summary refs log tree commit diff
path: root/crypto/test
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2020-02-20 01:08:52 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2020-02-20 01:08:52 +0700
commitf9a7d8dde7b260d19a042729d20dd1c6d68a6276 (patch)
tree3ff1d7eaef82e79e9ac03889b7d732af3331ef46 /crypto/test
parentFix typo (diff)
downloadBouncyCastle.NET-ed25519-f9a7d8dde7b260d19a042729d20dd1c6d68a6276.tar.xz
Stricter header validation for PEM files
Diffstat (limited to 'crypto/test')
-rw-r--r--crypto/test/src/util/io/pem/test/AllTests.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/test/src/util/io/pem/test/AllTests.cs b/crypto/test/src/util/io/pem/test/AllTests.cs

index 921c40cb8..c0ca667f5 100644 --- a/crypto/test/src/util/io/pem/test/AllTests.cs +++ b/crypto/test/src/util/io/pem/test/AllTests.cs
@@ -63,6 +63,14 @@ namespace Org.BouncyCastle.Utilities.IO.Pem.Tests lengthTest("RSA PRIVATE KEY", headers, new byte[103]); } + [Test] + public void TestMalformed() + { + PemReader rd = new PemReader(new StringReader("-----BEGIN \n")); + + Assert.IsNull(rd.ReadPemObject()); + } + private void lengthTest(string type, IList headers, byte[] data) { StringWriter sw = new StringWriter();