replace old and ugly crypt implementation
[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
9 char *__crypt_r(const char *key, const char *salt, struct crypt_data *data)
10 {
11         char *output = (char *)data;
12 #if 0
13         /* MD5 or SHA? */
14         if (salt[0] == '$' && salt[1] && salt[2] == '$') {
15                 if (salt[1] == '1')
16                         return __crypt_md5((char *)data, key, salt);
17                 else
18                         return "x";
19         }
20 #endif
21         return __crypt_des(key, salt, output);
22 }
23
24 weak_alias(__crypt_r, crypt_r);