This file implements various functions that have since been redefined as
macros. I'm removing this from the NO_DEPRECATED build.
This commit is contained in:
parent
4843acc868
commit
7771b6c5b5
1 changed files with 6 additions and 0 deletions
|
@ -56,6 +56,10 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifdef OPENSSL_NO_DEPRECATED
|
||||
static void *dummy = &dummy;
|
||||
#else
|
||||
|
||||
#include <openssl/evp.h>
|
||||
|
||||
/* Define some deprecated functions, so older programs
|
||||
|
@ -106,3 +110,5 @@ const EVP_CIPHER *EVP_aes_192_cfb(void) { return EVP_aes_192_cfb128(); }
|
|||
#undef EVP_aes_256_cfb
|
||||
const EVP_CIPHER *EVP_aes_256_cfb(void) { return EVP_aes_256_cfb128(); }
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue