diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/evp/evp.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/libcrypto/evp/evp.h b/src/lib/libcrypto/evp/evp.h index 0d870d60be..fb16de6852 100644 --- a/src/lib/libcrypto/evp/evp.h +++ b/src/lib/libcrypto/evp/evp.h | |||
@@ -641,10 +641,25 @@ const EVP_CIPHER *EVP_rc5_32_12_16_ofb(void); | |||
641 | #ifndef OPENSSL_NO_AES | 641 | #ifndef OPENSSL_NO_AES |
642 | const EVP_CIPHER *EVP_aes_128_ecb(void); | 642 | const EVP_CIPHER *EVP_aes_128_ecb(void); |
643 | const EVP_CIPHER *EVP_aes_128_cbc(void); | 643 | const EVP_CIPHER *EVP_aes_128_cbc(void); |
644 | const EVP_CIPHER *EVP_aes_128_cfb(void); | ||
645 | const EVP_CIPHER *EVP_aes_128_ofb(void); | ||
646 | #if 0 | ||
647 | const EVP_CIPHER *EVP_aes_128_ctr(void); | ||
648 | #endif | ||
644 | const EVP_CIPHER *EVP_aes_192_ecb(void); | 649 | const EVP_CIPHER *EVP_aes_192_ecb(void); |
645 | const EVP_CIPHER *EVP_aes_192_cbc(void); | 650 | const EVP_CIPHER *EVP_aes_192_cbc(void); |
651 | const EVP_CIPHER *EVP_aes_192_cfb(void); | ||
652 | const EVP_CIPHER *EVP_aes_192_ofb(void); | ||
653 | #if 0 | ||
654 | const EVP_CIPHER *EVP_aes_192_ctr(void); | ||
655 | #endif | ||
646 | const EVP_CIPHER *EVP_aes_256_ecb(void); | 656 | const EVP_CIPHER *EVP_aes_256_ecb(void); |
647 | const EVP_CIPHER *EVP_aes_256_cbc(void); | 657 | const EVP_CIPHER *EVP_aes_256_cbc(void); |
658 | const EVP_CIPHER *EVP_aes_256_cfb(void); | ||
659 | const EVP_CIPHER *EVP_aes_256_ofb(void); | ||
660 | #if 0 | ||
661 | const EVP_CIPHER *EVP_aes_256_ctr(void); | ||
662 | #endif | ||
648 | #endif | 663 | #endif |
649 | 664 | ||
650 | void OPENSSL_add_all_algorithms_noconf(void); | 665 | void OPENSSL_add_all_algorithms_noconf(void); |