X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fevp%2Fc_alld.c;h=a935aa565e65e48618969e864bf6c27451668846;hp=2334a28a5e33f2e4b823971c75b7bf51497b84f0;hb=31c2ac1cdc9df8f15b1faa8f7df1117c32095037;hpb=6bca8e38864ed2e124e32710908f38f6b285737e diff --git a/crypto/evp/c_alld.c b/crypto/evp/c_alld.c index 2334a28a5e..a935aa565e 100644 --- a/crypto/evp/c_alld.c +++ b/crypto/evp/c_alld.c @@ -102,5 +102,13 @@ void OpenSSL_add_all_digests(void) EVP_add_digest(EVP_ripemd160()); EVP_add_digest_alias(SN_ripemd160,"ripemd"); EVP_add_digest_alias(SN_ripemd160,"rmd160"); +#endif +#ifndef OPENSSL_NO_SHA256 + EVP_add_digest(EVP_sha224()); + EVP_add_digest(EVP_sha256()); +#endif +#ifndef OPENSSL_NO_SHA512 + EVP_add_digest(EVP_sha384()); + EVP_add_digest(EVP_sha512()); #endif }