[git commit] arc4random.c: replace a comment
Bernhard Reutner-Fischer
rep.dot.nop at gmail.com
Fri Jun 15 12:00:27 UTC 2012
commit: http://git.uclibc.org/uClibc/commit/?id=5e8529cbb37c7fefe7b23c81589a637da860fa4f
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master
Remove pointer to a dead link.
Signed-off-by: Peter S. Mazinger <ps.m at gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
libc/stdlib/arc4random.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/libc/stdlib/arc4random.c b/libc/stdlib/arc4random.c
index 55ea7e2..b83fe32 100644
--- a/libc/stdlib/arc4random.c
+++ b/libc/stdlib/arc4random.c
@@ -131,11 +131,11 @@ arc4_stir(struct arc4_stream *as)
/*
* Throw away the first N words of output, as suggested in the
* paper "Weaknesses in the Key Scheduling Algorithm of RC4"
- * by Fluher, Mantin, and Shamir.
- * http://www.wisdom.weizmann.ac.il/~itsik/RC4/Papers/Rc4_ksa.ps
- * N = 256 in our case.
+ * by Fluher, Mantin, and Shamir. N = 1024 is based on
+ * suggestions in the paper "(Not So) Random Shuffles of RC4"
+ * by Ilya Mironov.
*/
- for (n = 0; n < 256 * 4; n++)
+ for (n = 0; n < 1024; n++)
arc4_getbyte(as);
}
More information about the uClibc-cvs
mailing list