Implement Provider side Key Management for X25519 and X448
[openssl.git] / providers / defltprov.c
index 8d89322825b45d0f5f24ebc6abee3c68e13cdba3..71eba5f5a70e31be59691618cd34af7910288bbf 100644 (file)
@@ -395,6 +395,10 @@ static const OSSL_ALGORITHM deflt_keymgmt[] = {
     { "DSA:dsaEncryption", "default=yes", dsa_keymgmt_functions },
 #endif
     { "RSA:rsaEncryption", "default=yes", rsa_keymgmt_functions },
+#ifndef OPENSSL_NO_EC
+    { "X25519", "default=yes", x25519_keymgmt_functions },
+    { "X448", "default=yes", x448_keymgmt_functions },
+#endif
     { NULL, NULL, NULL }
 };