a5eebfa222aecf138ba34ca100af6fccaeb4f830
[tpg/acess2.git] / Usermode / Libraries / libposix.so_src / unistd_crypt.c
1 /*
2  * Acess2 POSIX Emulation
3  * - By John Hodge (thePowersGang)
4  *
5  * unistd_crypt.c
6  * - crypt(3)
7  */
8 #include <unistd.h>
9
10 // === CODE ===
11 char *crypt(const char *key, const char *salt)
12 {
13         return "YIH14pBTDJvJ6"; // 'password' with the salt YI
14 }

UCC git Repository :: git.ucc.asn.au