diff options
Diffstat (limited to 'src/lib/libcrypto/evp/e_old.c')
| -rw-r--r-- | src/lib/libcrypto/evp/e_old.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lib/libcrypto/evp/e_old.c b/src/lib/libcrypto/evp/e_old.c index 92dc498945..1642af4869 100644 --- a/src/lib/libcrypto/evp/e_old.c +++ b/src/lib/libcrypto/evp/e_old.c | |||
| @@ -56,6 +56,10 @@ | |||
| 56 | * | 56 | * |
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #ifdef OPENSSL_NO_DEPRECATED | ||
| 60 | static void *dummy = &dummy; | ||
| 61 | #else | ||
| 62 | |||
| 59 | #include <openssl/evp.h> | 63 | #include <openssl/evp.h> |
| 60 | 64 | ||
| 61 | /* Define some deprecated functions, so older programs | 65 | /* Define some deprecated functions, so older programs |
| @@ -66,43 +70,56 @@ | |||
| 66 | 70 | ||
| 67 | #ifndef OPENSSL_NO_BF | 71 | #ifndef OPENSSL_NO_BF |
| 68 | #undef EVP_bf_cfb | 72 | #undef EVP_bf_cfb |
| 73 | const EVP_CIPHER *EVP_bf_cfb(void); | ||
| 69 | const EVP_CIPHER *EVP_bf_cfb(void) { return EVP_bf_cfb64(); } | 74 | const EVP_CIPHER *EVP_bf_cfb(void) { return EVP_bf_cfb64(); } |
| 70 | #endif | 75 | #endif |
| 71 | 76 | ||
| 72 | #ifndef OPENSSL_NO_DES | 77 | #ifndef OPENSSL_NO_DES |
| 73 | #undef EVP_des_cfb | 78 | #undef EVP_des_cfb |
| 79 | const EVP_CIPHER *EVP_des_cfb(void); | ||
| 74 | const EVP_CIPHER *EVP_des_cfb(void) { return EVP_des_cfb64(); } | 80 | const EVP_CIPHER *EVP_des_cfb(void) { return EVP_des_cfb64(); } |
| 75 | #undef EVP_des_ede3_cfb | 81 | #undef EVP_des_ede3_cfb |
| 82 | const EVP_CIPHER *EVP_des_ede3_cfb(void); | ||
| 76 | const EVP_CIPHER *EVP_des_ede3_cfb(void) { return EVP_des_ede3_cfb64(); } | 83 | const EVP_CIPHER *EVP_des_ede3_cfb(void) { return EVP_des_ede3_cfb64(); } |
| 77 | #undef EVP_des_ede_cfb | 84 | #undef EVP_des_ede_cfb |
| 85 | const EVP_CIPHER *EVP_des_ede_cfb(void); | ||
| 78 | const EVP_CIPHER *EVP_des_ede_cfb(void) { return EVP_des_ede_cfb64(); } | 86 | const EVP_CIPHER *EVP_des_ede_cfb(void) { return EVP_des_ede_cfb64(); } |
| 79 | #endif | 87 | #endif |
| 80 | 88 | ||
| 81 | #ifndef OPENSSL_NO_IDEA | 89 | #ifndef OPENSSL_NO_IDEA |
| 82 | #undef EVP_idea_cfb | 90 | #undef EVP_idea_cfb |
| 91 | const EVP_CIPHER *EVP_idea_cfb(void); | ||
| 83 | const EVP_CIPHER *EVP_idea_cfb(void) { return EVP_idea_cfb64(); } | 92 | const EVP_CIPHER *EVP_idea_cfb(void) { return EVP_idea_cfb64(); } |
| 84 | #endif | 93 | #endif |
| 85 | 94 | ||
| 86 | #ifndef OPENSSL_NO_RC2 | 95 | #ifndef OPENSSL_NO_RC2 |
| 87 | #undef EVP_rc2_cfb | 96 | #undef EVP_rc2_cfb |
| 97 | const EVP_CIPHER *EVP_rc2_cfb(void); | ||
| 88 | const EVP_CIPHER *EVP_rc2_cfb(void) { return EVP_rc2_cfb64(); } | 98 | const EVP_CIPHER *EVP_rc2_cfb(void) { return EVP_rc2_cfb64(); } |
| 89 | #endif | 99 | #endif |
| 90 | 100 | ||
| 91 | #ifndef OPENSSL_NO_CAST | 101 | #ifndef OPENSSL_NO_CAST |
| 92 | #undef EVP_cast5_cfb | 102 | #undef EVP_cast5_cfb |
| 103 | const EVP_CIPHER *EVP_cast5_cfb(void); | ||
| 93 | const EVP_CIPHER *EVP_cast5_cfb(void) { return EVP_cast5_cfb64(); } | 104 | const EVP_CIPHER *EVP_cast5_cfb(void) { return EVP_cast5_cfb64(); } |
| 94 | #endif | 105 | #endif |
| 95 | 106 | ||
| 96 | #ifndef OPENSSL_NO_RC5 | 107 | #ifndef OPENSSL_NO_RC5 |
| 97 | #undef EVP_rc5_32_12_16_cfb | 108 | #undef EVP_rc5_32_12_16_cfb |
| 109 | const EVP_CIPHER *EVP_rc5_32_12_16_cfb(void); | ||
| 98 | const EVP_CIPHER *EVP_rc5_32_12_16_cfb(void) { return EVP_rc5_32_12_16_cfb64(); } | 110 | const EVP_CIPHER *EVP_rc5_32_12_16_cfb(void) { return EVP_rc5_32_12_16_cfb64(); } |
| 99 | #endif | 111 | #endif |
| 100 | 112 | ||
| 101 | #ifndef OPENSSL_NO_AES | 113 | #ifndef OPENSSL_NO_AES |
| 102 | #undef EVP_aes_128_cfb | 114 | #undef EVP_aes_128_cfb |
| 115 | const EVP_CIPHER *EVP_aes_128_cfb(void); | ||
| 103 | const EVP_CIPHER *EVP_aes_128_cfb(void) { return EVP_aes_128_cfb128(); } | 116 | const EVP_CIPHER *EVP_aes_128_cfb(void) { return EVP_aes_128_cfb128(); } |
| 104 | #undef EVP_aes_192_cfb | 117 | #undef EVP_aes_192_cfb |
| 118 | const EVP_CIPHER *EVP_aes_192_cfb(void); | ||
| 105 | const EVP_CIPHER *EVP_aes_192_cfb(void) { return EVP_aes_192_cfb128(); } | 119 | const EVP_CIPHER *EVP_aes_192_cfb(void) { return EVP_aes_192_cfb128(); } |
| 106 | #undef EVP_aes_256_cfb | 120 | #undef EVP_aes_256_cfb |
| 121 | const EVP_CIPHER *EVP_aes_256_cfb(void); | ||
| 107 | const EVP_CIPHER *EVP_aes_256_cfb(void) { return EVP_aes_256_cfb128(); } | 122 | const EVP_CIPHER *EVP_aes_256_cfb(void) { return EVP_aes_256_cfb128(); } |
| 108 | #endif | 123 | #endif |
| 124 | |||
| 125 | #endif | ||
