3 * Wrapper for various crypt algorithms.
5 * Copyright (c) 2001 Marko Kreen
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * contrib/pgcrypto/px-crypt.c
38 run_crypt_des(const char *psw
, const char *salt
,
39 char *buf
, unsigned len
)
43 res
= px_crypt_des(psw
, salt
);
44 if (res
== NULL
|| strlen(res
) > len
- 1)
51 run_crypt_md5(const char *psw
, const char *salt
,
52 char *buf
, unsigned len
)
56 res
= px_crypt_md5(psw
, salt
, buf
, len
);
61 run_crypt_bf(const char *psw
, const char *salt
,
62 char *buf
, unsigned len
)
66 res
= _crypt_blowfish_rn(psw
, salt
, buf
, len
);
74 char *(*crypt
) (const char *psw
, const char *salt
,
75 char *buf
, unsigned len
);
78 static const struct px_crypt_algo
80 {"$2a$", 4, run_crypt_bf
},
81 {"$2x$", 4, run_crypt_bf
},
82 {"$2$", 3, NULL
}, /* N/A */
83 {"$1$", 3, run_crypt_md5
},
84 {"_", 1, run_crypt_des
},
85 {"", 0, run_crypt_des
},
90 px_crypt(const char *psw
, const char *salt
, char *buf
, unsigned len
)
92 const struct px_crypt_algo
*c
;
94 for (c
= px_crypt_list
; c
->id
; c
++)
98 if (strncmp(salt
, c
->id
, c
->id_len
) == 0)
102 if (c
->crypt
== NULL
)
105 return c
->crypt(psw
, salt
, buf
, len
);
115 char *(*gen
) (unsigned long count
, const char *input
, int size
,
116 char *output
, int output_size
);
123 static struct generator gen_list
[] = {
124 {"des", _crypt_gensalt_traditional_rn
, 2, 0, 0, 0},
125 {"md5", _crypt_gensalt_md5_rn
, 6, 0, 0, 0},
126 {"xdes", _crypt_gensalt_extended_rn
, 3, PX_XDES_ROUNDS
, 1, 0xFFFFFF},
127 {"bf", _crypt_gensalt_blowfish_rn
, 16, PX_BF_ROUNDS
, 4, 31},
128 {NULL
, NULL
, 0, 0, 0, 0}
132 px_gen_salt(const char *salt_type
, char *buf
, int rounds
)
138 for (g
= gen_list
; g
->name
; g
++)
139 if (pg_strcasecmp(g
->name
, salt_type
) == 0)
143 return PXE_UNKNOWN_SALT_ALGO
;
148 rounds
= g
->def_rounds
;
150 if (rounds
< g
->min_rounds
|| rounds
> g
->max_rounds
)
151 return PXE_BAD_SALT_ROUNDS
;
154 if (!pg_strong_random(rbuf
, g
->input_len
))
155 return PXE_NO_RANDOM
;
157 p
= g
->gen(rounds
, rbuf
, g
->input_len
, buf
, PX_MAX_SALT_LEN
);
158 px_memset(rbuf
, 0, sizeof(rbuf
));
161 return PXE_BAD_SALT_ROUNDS
;