diff options
Diffstat (limited to 'lib/libc/crypt/crypt.3')
-rw-r--r-- | lib/libc/crypt/crypt.3 | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/libc/crypt/crypt.3 b/lib/libc/crypt/crypt.3 index f456cca7d32..32109dfac3f 100644 --- a/lib/libc/crypt/crypt.3 +++ b/lib/libc/crypt/crypt.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: crypt.3,v 1.20 2003/05/30 13:06:02 jmc Exp $ +.\" $OpenBSD: crypt.3,v 1.21 2003/08/07 00:32:12 deraadt Exp $ .\" .\" FreeSec: libcrypt .\" @@ -53,6 +53,12 @@ .Fn des_setkey "const char *key" .Ft int .Fn des_cipher "const char *in" "char *out" "int32_t salt" "int count" +.Ft char * +.Fn bcrypt_gensalt "u_int8_t log_rounds" +.Ft char * +.Fn bcrypt "const char *key" "const char *salt" +.Ft char * +.Fn md5crypt "const char *key" "const char *salt" .Sh DESCRIPTION The .Fn crypt |