diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-09-16 09:51:51 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-09-16 09:51:51 -0400 |
commit | 981d0a24b81f27a642946648e49b3cadbd0c28b7 (patch) | |
tree | 4347cf6b6a2d3e264ffbc905f58902bbfe5e1474 /src/common/aes.h | |
parent | b08ddb60c9a2bfb133889a399d4e6d01af5a59d9 (diff) | |
download | tor-981d0a24b81f27a642946648e49b3cadbd0c28b7.tar.gz tor-981d0a24b81f27a642946648e49b3cadbd0c28b7.zip |
In aes.c, support 192-bit and 256-bit keys.
Also, change the input types for aes_new_cipher to be unsigned,
as they should have been all along.
Diffstat (limited to 'src/common/aes.h')
-rw-r--r-- | src/common/aes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/aes.h b/src/common/aes.h index 821fb742be..1cda53f2fa 100644 --- a/src/common/aes.h +++ b/src/common/aes.h @@ -15,7 +15,8 @@ typedef struct aes_cnt_cipher aes_cnt_cipher_t; -aes_cnt_cipher_t* aes_new_cipher(const char *key, const char *iv); +aes_cnt_cipher_t* aes_new_cipher(const uint8_t *key, const uint8_t *iv, + int key_bits); void aes_cipher_free(aes_cnt_cipher_t *cipher); void aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len); |