diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1997-04-27 22:40:26 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1997-04-27 22:40:26 +0000 |
commit | 1501a670903b6ae9d349b02301161f6bc86cc284 (patch) | |
tree | c61d4ac04d73307c38a6a2b901ccdf5e00bc79fd /lib | |
parent | 6704b1667371472540bcf58222b89461ec10a3b2 (diff) |
Typo and return value for arc4random().
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/crypt/arc4random.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/crypt/arc4random.3 b/lib/libc/crypt/arc4random.3 index 71a3c003f6f..39b4de15db5 100644 --- a/lib/libc/crypt/arc4random.3 +++ b/lib/libc/crypt/arc4random.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: arc4random.3,v 1.1 1997/04/15 13:06:54 provos Exp $ +.\" $OpenBSD: arc4random.3,v 1.2 1997/04/27 22:40:25 angelos Exp $ .\" Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> .\" All rights reserved. .\" @@ -39,7 +39,7 @@ .Nd arc4 random number generator. .Sh SYNOPSIS .Fd #include <stdlib.h> -.Ft void +.Ft u_int32_t .Fn arc4random "void" .Ft void .Fn arc4random_stir "void" @@ -78,5 +78,5 @@ has been designed by RSA Data Security, Inc. It was posted anonymously to the USENET and was confirmed to be equivalent by several sources who had access to the original cipher. Since .Pa RC4 -used to by a trade secret, the cipher is now refered to as +used to be a trade secret, the cipher is now refered to as .Pa ARC4 . |