diff options
-rw-r--r-- | cryptography/hazmat/bindings/openssl/aes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/bindings/openssl/aes.py b/cryptography/hazmat/bindings/openssl/aes.py index fa8cbc7e..58ef0cf1 100644 --- a/cryptography/hazmat/bindings/openssl/aes.py +++ b/cryptography/hazmat/bindings/openssl/aes.py @@ -43,7 +43,7 @@ int AES_unwrap_key(AES_KEY *, const unsigned char *, unsigned char *, this in 1.0.0+. It is defined in macros because the function signature changed after 0.9.8 */ void AES_ctr128_encrypt(const unsigned char *, unsigned char *, - const unsigned size_t, const AES_KEY *, + const size_t, const AES_KEY *, unsigned char[], unsigned char[], unsigned int *); """ |