summaryrefslogtreecommitdiff
path: root/src/common/aes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/aes.h')
-rw-r--r--src/common/aes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/aes.h b/src/common/aes.h
index b4b90187cf..e03fae6e87 100644
--- a/src/common/aes.h
+++ b/src/common/aes.h
@@ -25,6 +25,7 @@ void aes_free_cipher(aes_cnt_cipher_t *cipher);
void aes_set_key(aes_cnt_cipher_t *cipher, const char *key, int key_bits);
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);
void aes_set_iv(aes_cnt_cipher_t *cipher, const char *iv);
#endif