add blowfish hash support to crypt
[musl] / src / misc / crypt_r.c
1 #include <crypt.h>
2 #include "libc.h"
3
4 struct crypt_data;
5
6 char *__crypt_des(const char *, const char *, char *);
7 char *__crypt_md5(const char *, const char *, char *);
8 char *__crypt_blowfish(const char *, const char *, char *);
9
10 char *__crypt_r(const char *key, const char *salt, struct crypt_data *data)
11 {
12         char *output = (char *)data;
13         if (salt[0] == '$' && salt[1] && salt[2]) {
14 #if 0
15                 if (salt[1] == '1' && salt[2] == '$')
16                         return __crypt_md5(key, salt, output);
17 #endif
18                 if (salt[1] == '2' && salt[3] == '$')
19                         return __crypt_blowfish(key, salt, output);
20         }
21         return __crypt_des(key, salt, output);
22 }
23
24 weak_alias(__crypt_r, crypt_r);