21 lines
589 B
C
21 lines
589 B
C
|
#include <openssl/aes.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
const EVP_CIPHER *EVP_aes_128_cfb1(void){ return 0; }
|
||
|
const EVP_CIPHER *EVP_aes_192_cfb1(void){ return 0; }
|
||
|
const EVP_CIPHER *EVP_aes_256_cfb1(void){ return 0; }
|
||
|
|
||
|
const EVP_CIPHER *EVP_aes_128_cfb8(void){ return 0; }
|
||
|
const EVP_CIPHER *EVP_aes_192_cfb8(void){ return 0; }
|
||
|
const EVP_CIPHER *EVP_aes_256_cfb8(void){ return 0; }
|
||
|
|
||
|
const EVP_CIPHER *EVP_aes_128_cfb128(void){ return 0; }
|
||
|
const EVP_CIPHER *EVP_aes_192_cfb128(void){ return 0; }
|
||
|
const EVP_CIPHER *EVP_aes_256_cfb128(void){ return 0; }
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
};
|
||
|
#endif
|