diff -r e4d67989cc36 -r 47c74d1534e1 ssl/libcrypto/src/crypto/evp/evp.h --- a/ssl/libcrypto/src/crypto/evp/evp.h Tue Feb 02 02:01:42 2010 +0200 +++ b/ssl/libcrypto/src/crypto/evp/evp.h Fri Apr 16 16:46:38 2010 +0300 @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ /* - © Portions copyright (c) 2006 Nokia Corporation. All rights reserved. + © Portions copyright (c) 2006-2010 Nokia Corporation. All rights reserved. */ #ifndef HEADER_ENVELOPE_H @@ -618,6 +618,14 @@ IMPORT_C const EVP_MD *EVP_dss(void); IMPORT_C const EVP_MD *EVP_dss1(void); #endif +#ifndef OPENSSL_NO_SHA256 +IMPORT_C const EVP_MD *EVP_sha224(void); +IMPORT_C const EVP_MD *EVP_sha256(void); +#endif +#ifndef OPENSSL_NO_SHA512 +IMPORT_C const EVP_MD *EVP_sha384(void); +IMPORT_C const EVP_MD *EVP_sha512(void); +#endif IMPORT_C const EVP_CIPHER *EVP_enc_null(void); /* does nothing :-) */ #ifndef OPENSSL_NO_DES IMPORT_C const EVP_CIPHER *EVP_des_ecb(void);