diff options
Diffstat (limited to 'src/common/aes.h')
-rw-r--r-- | src/common/aes.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/common/aes.h b/src/common/aes.h index 5500db7d0c..c1e5c53fcc 100644 --- a/src/common/aes.h +++ b/src/common/aes.h @@ -17,12 +17,9 @@ typedef struct aes_cnt_cipher aes_cnt_cipher_t; aes_cnt_cipher_t* aes_new_cipher(const char *key, const char *iv); void aes_cipher_free(aes_cnt_cipher_t *cipher); -void aes_crypt(aes_cnt_cipher_t *cipher, const char *input, size_t len, - char *output); void aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len); int evaluate_evp_for_aes(int force_value); int evaluate_ctr_for_aes(void); #endif - |