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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/aes.h b/src/common/aes.h
index 3c63a0e4f2..085ea55932 100644
--- a/src/common/aes.h
+++ b/src/common/aes.h
@@ -17,7 +17,7 @@
struct aes_cnt_cipher;
typedef struct aes_cnt_cipher aes_cnt_cipher_t;
-aes_cnt_cipher_t* aes_new_cipher();
+aes_cnt_cipher_t* aes_new_cipher(void);
void aes_free_cipher(aes_cnt_cipher_t *cipher);
void aes_set_key(aes_cnt_cipher_t *cipher, const unsigned char *key, int key_bits);
void aes_crypt(aes_cnt_cipher_t *cipher, const char *input, int len, char *output);