Add SEED ciphers to default provider
[oweals/openssl.git] / providers / default / defltprov.c
index a6a6c9f4704a18d22129f12087da03d846f7e0ff..71169161e86b0699c13c7a29914008f99e60ee86 100644 (file)
@@ -207,6 +207,12 @@ static const OSSL_ALGORITHM deflt_ciphers[] = {
     { "CAST5-OFB", "default=yes", cast564ofb64_functions },
     { "CAST5-CFB", "default=yes", cast564cfb64_functions },
 #endif /* OPENSSL_NO_CAST */
+#ifndef OPENSSL_NO_SEED
+    { "SEED-ECB", "default=yes", seed128ecb_functions },
+    { "SEED-CBC", "default=yes", seed128cbc_functions },
+    { "SEED-OFB", "default=yes", seed128ofb128_functions },
+    { "SEED-CFB", "default=yes", seed128cfb128_functions },
+#endif /* OPENSSL_NO_SEED */
     { NULL, NULL, NULL }
 };