]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - test/recipes/25-test_pkcs8.t
Add support for PBE using hmacWithSM3
[thirdparty/openssl.git] / test / recipes / 25-test_pkcs8.t
diff --git a/test/recipes/25-test_pkcs8.t b/test/recipes/25-test_pkcs8.t
new file mode 100644 (file)
index 0000000..7e17586
--- /dev/null
@@ -0,0 +1,40 @@
+#! /usr/bin/env perl
+# Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License").  You may not use
+# this file except in compliance with the License.  You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
+use strict;
+use warnings;
+
+use OpenSSL::Test::Utils;
+use File::Compare qw(compare_text);
+use OpenSSL::Test qw/:DEFAULT srctop_file ok_nofips is_nofips/;
+
+setup("test_pkcs8");
+
+plan tests => 3;
+
+SKIP: {
+    skip "SM2, SM3 or SM4 is not supported by this OpenSSL build", 3
+        if disabled("sm2") || disabled("sm3") || disabled("sm4");
+
+    ok_nofips(run(app(([ 'openssl', 'pkcs8', '-topk8',
+                      '-in', srctop_file('test', 'certs', 'sm2.key'),
+                      '-out', 'sm2-pbes2-sm4-hmacWithSM3.key',
+                      '-passout', 'pass:password',
+                      '-v2', 'sm4', '-v2prf', 'hmacWithSM3']))),
+                      "Convert a private key to PKCS#5 v2.0 format using SM4 and hmacWithSM3");
+
+    ok_nofips(run(app(([ 'openssl', 'pkcs8', '-topk8',
+                      '-in', 'sm2-pbes2-sm4-hmacWithSM3.key',
+                      '-out', 'sm2.key',
+                      '-passin', 'pass:password', '-nocrypt',
+                      '-v2', 'sm4', '-v2prf', 'hmacWithSM3']))),
+                      "Convert from PKCS#5 v2.0 format to PKCS#8 unencrypted format");
+
+    is_nofips(compare_text(srctop_file('test', 'certs', 'sm2.key'), 'sm2.key'), 0,
+              "compare test/certs/sm2.key to sm2.key")
+}