diff options
author | 2015-02-11 04:02:23 +0000 | |
---|---|---|
committer | 2015-02-11 04:02:23 +0000 | |
commit | 0ba5c1c82f3f496030e2fe1af80dcfc02d8810ac (patch) | |
tree | 58300d43976beee88bfd8542fa9c56ecaa7fadfe /lib/libc | |
parent | Remove initialisers with default values from the ASN1 data structures. (diff) | |
download | wireguard-openbsd-0ba5c1c82f3f496030e2fe1af80dcfc02d8810ac.tar.xz wireguard-openbsd-0ba5c1c82f3f496030e2fe1af80dcfc02d8810ac.zip |
the possible algos for pref should be documented here
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/crypt/crypt_checkpass.3 | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/lib/libc/crypt/crypt_checkpass.3 b/lib/libc/crypt/crypt_checkpass.3 index 09f2d02796c..44361d76221 100644 --- a/lib/libc/crypt/crypt_checkpass.3 +++ b/lib/libc/crypt/crypt_checkpass.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: crypt_checkpass.3,v 1.5 2014/12/02 07:39:58 schwarze Exp $ +.\" $OpenBSD: crypt_checkpass.3,v 1.6 2015/02/11 04:02:23 tedu Exp $ .\" .\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: December 2 2014 $ +.Dd $Mdocdate: February 11 2015 $ .Dt CRYPT_CHECKPASS 3 .Os .Sh NAME @@ -61,8 +61,15 @@ is randomly salted and hashed and stored in The .Fa pref argument identifies the preferred hashing algorithm and parameters. -Refer to -.Xr login.conf 5 . +Possible values are: +.Bl -tag +.It Dq blowfish,<rounds> +The bcrypt algorithm, where the value of rounds can be between 4 and 31 and +specifies the base 2 logarithm of the number of rounds. +The special rounds value +.Dq a +automatically selects rounds based on system performance. +.El .Sh RETURN VALUES .Rv -std crypt_checkpass crypt_newhash .Sh ERRORS |