summaryrefslogtreecommitdiff
path: root/src/common/aes.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-10-27 18:16:37 +0000
committerNick Mathewson <nickm@torproject.org>2004-10-27 18:16:37 +0000
commitce5709184bef665a545bcbf207598ad0f991a67b (patch)
tree58bf49cd59a7d236e2146ef3a86327929ca637fb /src/common/aes.h
parent6874c3990426ca4efd4e88796854f2bab60df54d (diff)
downloadtor-ce5709184bef665a545bcbf207598ad0f991a67b.tar.gz
tor-ce5709184bef665a545bcbf207598ad0f991a67b.zip
Pass with -Wstrict-prototypes
svn:r2614
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);