1 .\" FreeSec: libcrypt for NetBSD
3 .\" Copyright (c) 1994 David Burren
4 .\" All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 4. Neither the name of the author nor the names of other contributors
15 .\" may be used to endorse or promote products derived from this software
16 .\" without specific prior written permission.
18 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" $FreeBSD: src/lib/libcrypt/crypt.3,v 1.6.2.14 2002/12/29 16:35:35 schweikh Exp $
32 .\" Manual page, using -mandoc macros
39 .Nd Trapdoor encryption
45 .Fn crypt "const char *key" "const char *salt"
47 .Fn crypt_get_format "void"
49 .Fn crypt_set_format "const char *string"
53 function performs password hashing with additional code added to
54 deter key search attempts.
55 Different algorithms can be used to
59 .\" If you add more algorithms, make sure to update this list
60 .\" and the default used for the Traditional format, below.
62 Currently these include the
64 .Tn Data Encryption Standard (DES) ,
70 The algorithm used will depend upon the format of the Salt (following
71 the Modular Crypt Format (MCF)), if
75 is installed or not, and whether
77 has been called to change the default.
81 is the data to hash (usually a password), in a
82 .Dv null Ns -terminated
84 The second is the salt, in one of three forms:
86 .Bl -tag -width Traditional -compact -offset indent
88 If it begins with an underscore
93 is used in interpreting both the key and the salt, as outlined below.
95 If it begins with the string
97 then the Modular Crypt Format is used, as outlined below.
99 If neither of the above is true, it assumes the Traditional Format,
100 using the entire string as the salt (or the first portion).
103 All routines are designed to be time-consuming.
108 crypt to do approximately 2640 crypts
109 a CPU second and MD5 to do about 62 crypts a CPU second.
110 .Ss DES Extended Format:
113 is divided into groups of 8 characters (the last group is null-padded)
114 and the low-order 7 bits of each character (56 bits per group) are
118 the first group of 56 bits becomes the initial
121 For each additional group, the XOR of the encryption of the current
123 key with itself and the group bits becomes the next
127 The salt is a 9-character array consisting of an underscore followed
128 by 4 bytes of iteration count and 4 bytes of salt.
129 These are encoded as printable characters, 6 bits per character,
130 least significant character first.
131 The values 0 to 63 are encoded as ``./0-9A-Za-z''.
132 This allows 24 bits for both
139 introduces disorder in the
141 algorithm in one of 16777216 or 4096 possible ways
142 (ie.\& with 24 or 12 bits: if bit
156 key is used to encrypt a 64-bit constant using
160 The value returned is a
161 .Dv null Ns -terminated
162 string, 20 or 13 bytes (plus null) in length, consisting of the
164 followed by the encoded 64-bit encryption.
166 If the salt begins with the string
168 then the Modular Crypt Format is used.
171 represents which algorithm is used in encryption.
172 Following the token is
173 the actual salt to use in the encryption.
174 The length of the salt is limited
175 to 8 characters--because the length of the returned output is also limited
177 The salt must be terminated with the end of the string
178 (NULL) or a dollar sign.
179 Any characters after the dollar sign are ignored.
181 Currently supported algorithms are:
183 .Bl -enum -compact -offset indent
189 SHA256 deprecated implementation
191 SHA512 deprecated implementation
198 Other crypt formats may be easily added.
199 An example salt would be:
200 .Bl -tag -width ".Cm $3$thesalt$rest" -offset indent
201 .It Cm "$3$thesalt$rest"
203 .Ss "Traditional" crypt:
204 The algorithm used will depend upon whether
206 has been called and whether a global default format has been specified.
207 Unless a global default has been specified or
209 has set the format to something else, the built-in default format is
213 .\" NOTICE: Also make sure to update this
216 if it is available, or MD5 if not.
218 How the salt is used will depend upon the algorithm for the hash.
219 For best results, specify at least two characters of salt.
223 function returns a constant string that represents the name of the
224 algorithm currently used.
227 .\" NOTICE: Also make sure to update this, too, as well
238 function sets the default encoding format according to the supplied
241 The global default format can be set using the
248 returns a pointer to the encrypted value on success, and NULL on failure.
249 Note: this is not a standard behaviour, AT&T
251 will always return a pointer to a string.
254 will return 1 if the supplied encoding format was valid.
255 Otherwise, a value of 0 is returned.
276 section of the code (FreeSec 1.0) was developed outside the United
277 States of America as an unencumbered replacement for the U.S.-only
279 libcrypt encryption library.
282 Originally written by
283 .An David Burren Aq Mt davidb@werj.com.au ,
284 later additions and changes by
285 .An Poul-Henning Kamp ,
286 .An Mark R V Murray ,
295 function returns a pointer to static data, and subsequent calls to
297 will modify the same data.
300 modifies static data.