aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChirag Jog <chirag@clogeny.com>2014-06-16 15:56:46 +0000
committerChirag Jog <chirag@clogeny.com>2014-06-16 15:56:46 +0000
commitf65cfcd6e1dd133644a7cbceddf878b6e062561d (patch)
tree6e07929c1a98a26805fcad21f41d7ee28469f9e2
parent5fec2cb7a7dd020ec29c0f952a10899e3893f134 (diff)
downloadcryptography-f65cfcd6e1dd133644a7cbceddf878b6e062561d.tar.gz
cryptography-f65cfcd6e1dd133644a7cbceddf878b6e062561d.tar.bz2
cryptography-f65cfcd6e1dd133644a7cbceddf878b6e062561d.zip
change from unsigned size_t to size_t since size_t is always defined as unsigned.
-rw-r--r--cryptography/hazmat/bindings/openssl/aes.py2
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 *);
"""