diff options
-rw-r--r-- | test/d2i-tests/bad-int-pad0.der | bin | 0 -> 4 bytes | |||
-rw-r--r-- | test/d2i-tests/bad-int-padminus1.der | 1 | ||||
-rw-r--r-- | test/d2i-tests/int0.der | bin | 0 -> 3 bytes | |||
-rw-r--r-- | test/d2i-tests/int1.der | 1 | ||||
-rw-r--r-- | test/d2i-tests/intminus1.der | 1 | ||||
-rw-r--r-- | test/recipes/25-test_d2i.t | 44 |
6 files changed, 46 insertions, 1 deletions
diff --git a/test/d2i-tests/bad-int-pad0.der b/test/d2i-tests/bad-int-pad0.der Binary files differnew file mode 100644 index 0000000000..46f6092a82 --- /dev/null +++ b/test/d2i-tests/bad-int-pad0.der diff --git a/test/d2i-tests/bad-int-padminus1.der b/test/d2i-tests/bad-int-padminus1.der new file mode 100644 index 0000000000..a4b6bb9792 --- /dev/null +++ b/test/d2i-tests/bad-int-padminus1.der @@ -0,0 +1 @@ +ÿÿ
\ No newline at end of file diff --git a/test/d2i-tests/int0.der b/test/d2i-tests/int0.der Binary files differnew file mode 100644 index 0000000000..bbfb76b9d3 --- /dev/null +++ b/test/d2i-tests/int0.der diff --git a/test/d2i-tests/int1.der b/test/d2i-tests/int1.der new file mode 100644 index 0000000000..26dd6b16d9 --- /dev/null +++ b/test/d2i-tests/int1.der @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/test/d2i-tests/intminus1.der b/test/d2i-tests/intminus1.der new file mode 100644 index 0000000000..e7c1cea38c --- /dev/null +++ b/test/d2i-tests/intminus1.der @@ -0,0 +1 @@ +ÿ
\ No newline at end of file diff --git a/test/recipes/25-test_d2i.t b/test/recipes/25-test_d2i.t index d50de0431b..77afe3fb9f 100644 --- a/test/recipes/25-test_d2i.t +++ b/test/recipes/25-test_d2i.t @@ -15,7 +15,7 @@ use OpenSSL::Test qw/:DEFAULT srctop_file/; setup("test_d2i"); -plan tests => 4; +plan tests => 13; ok(run(test(["d2i_test", "X509", "decode", srctop_file('test','d2i-tests','bad_cert.der')])), @@ -37,3 +37,45 @@ ok(run(test(["d2i_test", "ASN1_ANY", "BIO", ok(run(test(["d2i_test", "ASN1_ANY", "OK", srctop_file('test','d2i-tests','high_tag.der')])), "Running d2i_test high_tag.der"); + +# Above test data but interpeted as ASN.1 INTEGER: this will be rejected +# because the tag is invalid. +ok(run(test(["d2i_test", "ASN1_INTEGER", "decode", + srctop_file('test','d2i-tests','high_tag.der')])), + "Running d2i_test high_tag.der INTEGER"); + +# Parse valid 0, 1 and -1 ASN.1 INTEGER as INTEGER or ANY. + +ok(run(test(["d2i_test", "ASN1_INTEGER", "OK", + srctop_file('test','d2i-tests','int0.der')])), + "Running d2i_test int0.der INTEGER"); + +ok(run(test(["d2i_test", "ASN1_INTEGER", "OK", + srctop_file('test','d2i-tests','int1.der')])), + "Running d2i_test int1.der INTEGER"); + +ok(run(test(["d2i_test", "ASN1_INTEGER", "OK", + srctop_file('test','d2i-tests','intminus1.der')])), + "Running d2i_test intminus1.der INTEGER"); + +ok(run(test(["d2i_test", "ASN1_ANY", "OK", + srctop_file('test','d2i-tests','int0.der')])), + "Running d2i_test int0.der ANY"); + +ok(run(test(["d2i_test", "ASN1_ANY", "OK", + srctop_file('test','d2i-tests','int1.der')])), + "Running d2i_test int1.der ANY"); + +ok(run(test(["d2i_test", "ASN1_ANY", "OK", + srctop_file('test','d2i-tests','intminus1.der')])), + "Running d2i_test intminus1.der ANY"); + +# Integers with illegal additional padding. + +ok(run(test(["d2i_test", "ASN1_INTEGER", "decode", + srctop_file('test','d2i-tests','bad-int-pad0.der')])), + "Running d2i_test bad-int-pad0.der INTEGER"); + +ok(run(test(["d2i_test", "ASN1_INTEGER", "decode", + srctop_file('test','d2i-tests','bad-int-padminus1.der')])), + "Running d2i_test bad-int-padminus1.der INTEGER"); |