We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c33096 commit 1f78923Copy full SHA for 1f78923
1 file changed
tests/api.c
@@ -19002,6 +19002,12 @@ static int test_wc_PKCS12_create(void)
19002
/* Encoding certificate with PBE_AES128_CBC needs WOLFSSL_ASN_TEMPLATE */
19003
EXPECT_TEST(test_wc_PKCS12_create_once(PBE_AES128_CBC, PBE_AES128_CBC));
19004
#endif
19005
+/* Testing a mixture of 2 algorithms */
19006
+#if defined(HAVE_AES_CBC) && !defined(NO_AES) && !defined(NO_AES_256) && \
19007
+ !defined(NO_SHA) && defined(WOLFSSL_ASN_TEMPLATE) && !defined(NO_DES3)
19008
+ EXPECT_TEST(test_wc_PKCS12_create_once(PBE_AES256_CBC, PBE_SHA1_DES3));
19009
+#endif
19010
+
19011
(void) test_wc_PKCS12_create_once;
19012
19013
return EXPECT_RESULT();
0 commit comments