New CMS tests.
authorDr. Stephen Henson <steve@openssl.org>
Wed, 17 Jul 2013 17:20:29 +0000 (18:20 +0100)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 17 Jul 2013 20:45:01 +0000 (21:45 +0100)
Add some ECDH CMS tests.

test/cms-test.pl

index 3ccece3f6748f51944a8584495393cbeae03460f..fa4394cff9f0c35e25379892a8d3a11a1a668bf7 100644 (file)
@@ -384,6 +384,31 @@ my @smime_cms_param_tests = (
           . " -recip $smdir/smrsa1.pem -keyopt rsa_padding_mode:oaep"
          . " -keyopt rsa_oaep_md:sha256",
         "-decrypt -recip $smdir/smrsa1.pem -in test.cms -out smtst.txt"
+    ],
+
+    [
+"enveloped content test streaming S/MIME format, ECDH",
+        "-encrypt -in smcont.txt"
+          . " -stream -out test.cms"
+          . " -recip $smdir/smec1.pem",
+        "-decrypt -recip $smdir/smec1.pem -in test.cms -out smtst.txt"
+    ],
+
+    [
+"enveloped content test streaming S/MIME format, ECDH, AES128, SHA256 KDF",
+        "-encrypt -in smcont.txt"
+          . " -stream -out test.cms"
+          . " -recip $smdir/smec1.pem -aes128 -keyopt ecdh_kdf_md:sha256",
+        "-decrypt -recip $smdir/smec1.pem -in test.cms -out smtst.txt"
+    ],
+
+    [
+"enveloped content test streaming S/MIME format, ECDH, K-283, cofactor DH",
+        "-encrypt -in smcont.txt"
+          . " -stream -out test.cms"
+          . " -recip $smdir/smec2.pem -aes128"
+         . " -keyopt ecdh_kdf_md:sha256 -keyopt ecdh_cofactor_mode:1",
+        "-decrypt -recip $smdir/smec2.pem -in test.cms -out smtst.txt"
     ]
 );