diff options
author | 1998-07-04 18:29:17 +0000 | |
---|---|---|
committer | 1998-07-04 18:29:17 +0000 | |
commit | a742dcd976d4ea95713c91b5d7bdb8e63f21f78e (patch) | |
tree | 4b7a4159ffb50a9dc3b6b536b8637292c15ce406 | |
parent | enable variable number of rounds for extended crypt, this is the crypt (diff) | |
download | wireguard-openbsd-a742dcd976d4ea95713c91b5d7bdb8e63f21f78e.tar.xz wireguard-openbsd-a742dcd976d4ea95713c91b5d7bdb8e63f21f78e.zip |
document the variable number of rounds for 'newsalt'. That name should
probably be changed to something more fitting.
-rw-r--r-- | share/man/man5/passwd.conf.5 | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/share/man/man5/passwd.conf.5 b/share/man/man5/passwd.conf.5 index 26525814bb6..757adc2145f 100644 --- a/share/man/man5/passwd.conf.5 +++ b/share/man/man5/passwd.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: passwd.conf.5,v 1.4 1997/12/02 10:57:36 provos Exp $ +.\" $OpenBSD: passwd.conf.5,v 1.5 1998/07/04 18:29:17 provos Exp $ .\" Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> .\" All rights reserved. .\" @@ -53,8 +53,14 @@ this file are: .Pp .Bl -tag -width localcipher -offset indent .It localcipher -The cipher to use for local passwords. Possible values are: 'old', 'newsalt', 'md5' -or 'blowfish,<rounds>' where rounds is a value between 4 and 31. +The cipher to use for local passwords. Possible values are: 'old', 'newsalt,<rounds>', 'md5' or 'blowfish,<rounds>'. +For +.Nm newsalt +the value of rounds is a 32-bit integer with a minmum of 725 rounds. +For +.Nm blowfish +the value can be between 4 and 31. It specifies the base 2 logarithm of +the number of rounds. .It ypcipher The cipher to use for YP passwords. The possible values are the same as for localcipher. |