commit | ce4112538c5d5710ab24063f033847ee77332b61 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Sep 04 12:28:37 2013 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Sep 04 12:29:26 2013 +0200 |
tree | 61bbb370434451a45fd02f6fab93797fbe11c7a1 | |
parent | 83f3fc0d772d1137b225a9c9bacec084177f2e70 [diff] [blame] |
Fix RC4 key length in cipher
diff --git a/include/polarssl/arc4.h b/include/polarssl/arc4.h index aa8feaa..9333265 100644 --- a/include/polarssl/arc4.h +++ b/include/polarssl/arc4.h
@@ -55,7 +55,7 @@ * * \param ctx ARC4 context to be initialized * \param key the secret key - * \param keylen length of the key + * \param keylen length of the key, in bytes */ void arc4_setup( arc4_context *ctx, const unsigned char *key, unsigned int keylen );