diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-10-15 14:18:36 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-10-15 14:18:36 +0700 |
commit | e3acb177d13bfe158aca5aff2b5a9d8cef269d5d (patch) | |
tree | 27dc72e89c7c29857f4787b9a328b1d06b331b2c /crypto/test/src/openssl | |
parent | ASN1InputStream updates from bc-java (diff) | |
download | BouncyCastle.NET-ed25519-e3acb177d13bfe158aca5aff2b5a9d8cef269d5d.tar.xz |
Improve ASN.1 substream handling
Diffstat (limited to 'crypto/test/src/openssl')
-rw-r--r-- | crypto/test/src/openssl/test/ReaderTest.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/test/src/openssl/test/ReaderTest.cs b/crypto/test/src/openssl/test/ReaderTest.cs index b8dff29d2..95bbe6a4d 100644 --- a/crypto/test/src/openssl/test/ReaderTest.cs +++ b/crypto/test/src/openssl/test/ReaderTest.cs @@ -185,14 +185,14 @@ namespace Org.BouncyCastle.OpenSsl.Tests doOpenSslDsaTest("rc2_64_cbc"); doOpenSslRsaTest("rc2_64_cbc"); - doDudPasswordTest("7fd98", 0, "corrupted stream - out of bounds length found: 599005160 >= 447"); - doDudPasswordTest("ef677", 1, "corrupted stream - out of bounds length found: 2087569732 >= 447"); + doDudPasswordTest("7fd98", 0, "corrupted stream - out of bounds length found: 599005160 >= 19"); + doDudPasswordTest("ef677", 1, "corrupted stream - out of bounds length found: 2087569732 >= 66"); doDudPasswordTest("800ce", 2, "unknown tag 26 encountered"); doDudPasswordTest("b6cd8", 3, "DEF length 81 object truncated by 56"); doDudPasswordTest("28ce09", 4, "corrupted stream - high tag number < 31 found"); doDudPasswordTest("2ac3b9", 5, "long form definite-length more than 31 bits"); - doDudPasswordTest("2cba96", 6, "DEF length 100 object truncated by 35"); - doDudPasswordTest("2e3354", 7, "DEF length 42 object truncated by 9"); + doDudPasswordTest("2cba96", 6, "corrupted stream - out of bounds length found: 100 >= 67"); + doDudPasswordTest("2e3354", 7, "corrupted stream - out of bounds length found: 42 >= 35"); doDudPasswordTest("2f4142", 8, "long form definite-length more than 31 bits"); doDudPasswordTest("2fe9bb", 9, "long form definite-length more than 31 bits"); doDudPasswordTest("3ee7a8", 10, "long form definite-length more than 31 bits"); |