diff options
Diffstat (limited to 'arcfour.h')
-rw-r--r-- | arcfour.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -51,11 +51,11 @@ struct arcfour_ctx void arcfour_set_key(struct arcfour_ctx *ctx, - unsigned length, const uint8_t *key); + size_t length, const uint8_t *key); void arcfour_crypt(struct arcfour_ctx *ctx, - unsigned length, uint8_t *dst, + size_t length, uint8_t *dst, const uint8_t *src); #ifdef __cplusplus |