3 * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
4 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
11 char *crypt(const char *key
, const char *salt
)
13 const unsigned char *ukey
= (const unsigned char *)key
;
14 const unsigned char *usalt
= (const unsigned char *)salt
;
17 if (salt
[1] && salt
[2] == '$') { /* no blowfish '2X' here ATM */
19 return __md5_crypt(ukey
, usalt
);
20 #ifdef __UCLIBC_HAS_SHA256_CRYPT_IMPL__
21 else if (*salt
== '5')
22 return __sha256_crypt(ukey
, usalt
);
24 #ifdef __UCLIBC_HAS_SHA512_CRYPT_IMPL__
25 else if (*salt
== '6')
26 return __sha512_crypt(ukey
, usalt
);
32 return __des_crypt(ukey
, usalt
);