Lines Matching defs:salt
22 char *salt;
24 salt = "$1$";
25 char *md5_result = crypt(key, salt);
29 salt = "$2$";
30 char *blowfish_result_first = crypt(key, salt);
31 char *blowfish_result_second = crypt(key, salt);
34 salt = "$5$";
35 char *sha256_result = crypt(key, salt);
40 salt = "$6$";
41 char *sha512_result = crypt(key, salt);
47 salt = "";
48 char *des_result_first = crypt(key, salt);
49 char *des_result_second = crypt(key, salt);