summaryrefslogtreecommitdiff
path: root/src/lib/libc/crypt
diff options
context:
space:
mode:
authorotto <>2010-12-22 08:23:42 +0000
committerotto <>2010-12-22 08:23:42 +0000
commitc5b4a3ff6bcf1a9bbdad0dbd296b2a6ff9522165 (patch)
treec1472004d9256158123b5f00a86f140d1c018283 /src/lib/libc/crypt
parentf8462bc35307b082a00e0adb51b4785d31acf09d (diff)
downloadopenbsd-c5b4a3ff6bcf1a9bbdad0dbd296b2a6ff9522165.tar.gz
openbsd-c5b4a3ff6bcf1a9bbdad0dbd296b2a6ff9522165.tar.bz2
openbsd-c5b4a3ff6bcf1a9bbdad0dbd296b2a6ff9522165.zip
remove comment that hasn't been true for quite a while now;
ok deraadt@ djm@
Diffstat (limited to 'src/lib/libc/crypt')
-rw-r--r--src/lib/libc/crypt/arc4random.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/lib/libc/crypt/arc4random.c b/src/lib/libc/crypt/arc4random.c
index 7580e39fb5..43c6fc0435 100644
--- a/src/lib/libc/crypt/arc4random.c
+++ b/src/lib/libc/crypt/arc4random.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: arc4random.c,v 1.21 2009/12/15 18:19:06 guenther Exp $ */ 1/* $OpenBSD: arc4random.c,v 1.22 2010/12/22 08:23:42 otto Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1996, David Mazieres <dm@uun.org> 4 * Copyright (c) 1996, David Mazieres <dm@uun.org>
@@ -26,11 +26,6 @@
26 * which is a trade secret). The same algorithm is used as a stream 26 * which is a trade secret). The same algorithm is used as a stream
27 * cipher called "arcfour" in Tatu Ylonen's ssh package. 27 * cipher called "arcfour" in Tatu Ylonen's ssh package.
28 * 28 *
29 * Here the stream cipher has been modified always to include the time
30 * when initializing the state. That makes it impossible to
31 * regenerate the same random sequence twice, so this can't be used
32 * for encryption, but will generate good random numbers.
33 *
34 * RC4 is a registered trademark of RSA Laboratories. 29 * RC4 is a registered trademark of RSA Laboratories.
35 */ 30 */
36 31