aboutsummaryrefslogtreecommitdiff
path: root/tcl_tests/cmstc262019.try
diff options
context:
space:
mode:
Diffstat (limited to 'tcl_tests/cmstc262019.try')
-rw-r--r--tcl_tests/cmstc262019.try17
1 files changed, 17 insertions, 0 deletions
diff --git a/tcl_tests/cmstc262019.try b/tcl_tests/cmstc262019.try
index 478298e..c2bdb85 100644
--- a/tcl_tests/cmstc262019.try
+++ b/tcl_tests/cmstc262019.try
@@ -5,6 +5,7 @@ package require ossltest
file delete -force $::test::dir/tc26_cms
file copy -force tc26_cms $::test::dir
cd $::test::dir
+set plain_str [getFile ./tc26_cms/plain/text_decrypted.plain]
start_tests "CMS tests, TC26 examples"
@@ -31,4 +32,20 @@ test "Digested data, 512 bits" {
} 0 "Verification successful
"
+test "CMS decrypt, Kuznyechik ACPKM+OMAC, KeyAgreement" {
+ grep "Enveloped" [openssl "cms -decrypt -debug_decrypt -in ./tc26_cms/encrypted_keyagree_a211.pem -inform PEM -inkey ./tc26_cms/recipient512_key.pem -recip ./tc26_cms/recipient512_cert.pem -originator ./tc26_cms/sender512_cert.pem"]
+} 0 $plain_str
+
+test "CMS decrypt, Magma ACPKM, KeyAgreement" {
+ grep "Enveloped" [openssl "cms -decrypt -debug_decrypt -in ./tc26_cms/encrypted_keyagree_a221.pem -inform PEM -inkey ./tc26_cms/recipient256_key.pem -recip ./tc26_cms/recipient256_cert.pem -originator ./tc26_cms/sender256_cert.pem"]
+} 0 $plain_str
+
+test "CMS decrypt, Kuznyechik ACPKM, KeyTrans" {
+ grep "Enveloped" [openssl "cms -decrypt -in ./tc26_cms/encrypted_keytrans_a231.pem -inform PEM -inkey ./tc26_cms/recipient256_key.pem"]
+} 0 $plain_str
+
+test "CMS decrypt, Magma ACPKM+OMAC, KeyTrans" {
+ grep "Enveloped" [openssl "cms -decrypt -debug_decrypt -in ./tc26_cms/encrypted_keytrans_a241.pem -inform PEM -inkey ./tc26_cms/recipient512_key.pem "]
+} 0 $plain_str
+
end_tests