提交 2c7fe4dc 编写于 作者: D Dr. Stephen Henson 提交者: Matt Caswell

Add ASN.1 INTEGER tests.

Add tests for ASN.1 INTEGER: invalid tag, valid 0, 1, -1 and 0, -1 with
illegal padding.

Also add ASN1_ANY tests for 0, 1 and -1.
Reviewed-by: NEmilia Käsper <emilia@openssl.org>
上级 1b96ec10
此差异由.gitattributes 抑制。
此差异由.gitattributes 抑制。
此差异由.gitattributes 抑制。
此差异由.gitattributes 抑制。
此差异由.gitattributes 抑制。
......@@ -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");
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册