diff options
author | Niels Möller <nisse@lysator.liu.se> | 2013-04-26 09:23:44 +0200 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2013-04-26 09:23:44 +0200 |
commit | 3eb603d0d810b9298f5624aaa8a293c4b51e4b2a (patch) | |
tree | dfc2ec4ca53377b1735d507bc1c8ba3a249aa5b1 /camellia.h | |
parent | 2b49c1792d48a99eff57a01bf31a8f5e765115c4 (diff) | |
download | nettle-3eb603d0d810b9298f5624aaa8a293c4b51e4b2a.tar.gz |
Use size_t rather than unsigned for all cipher-related functions.
Diffstat (limited to 'camellia.h')
-rw-r--r-- | camellia.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -61,11 +61,11 @@ struct camellia_ctx void camellia_set_encrypt_key(struct camellia_ctx *ctx, - unsigned length, const uint8_t *key); + size_t length, const uint8_t *key); void camellia_set_decrypt_key(struct camellia_ctx *ctx, - unsigned length, const uint8_t *key); + size_t length, const uint8_t *key); void camellia_invert_key(struct camellia_ctx *dst, @@ -73,7 +73,7 @@ camellia_invert_key(struct camellia_ctx *dst, void camellia_crypt(const struct camellia_ctx *ctx, - unsigned length, uint8_t *dst, + size_t length, uint8_t *dst, const uint8_t *src); #ifdef __cplusplus } |