Ensure EVP_get_digestbyname() and EVP_get_cipherbyname() know all aliases
[openssl.git] / include / crypto / evp.h
index dfbcf149de13440affa28489f11ed8a59a4d372c..8f8def26554f6a174e64ba3e9e281a875a7111f4 100644 (file)
@@ -622,3 +622,6 @@ void evp_encode_ctx_set_flags(EVP_ENCODE_CTX *ctx, unsigned int flags);
 #define EVP_ENCODE_CTX_NO_NEWLINES          1
 /* Use the SRP base64 alphabet instead of the standard one */
 #define EVP_ENCODE_CTX_USE_SRP_ALPHABET     2
+
+const EVP_CIPHER *evp_get_cipherbyname_ex(OPENSSL_CTX *libctx, const char *name);
+const EVP_MD *evp_get_digestbyname_ex(OPENSSL_CTX *libctx, const char *name);