Lines Matching refs:salt

122     char salt[15], answer[40];
124 salt[0]='$'; salt[1]='1'; salt[2]='$';
125 salt[3]='r'; salt[4]='a'; salt[5]='s';
126 salt[6]='m'; salt[7]='u'; salt[8]='s';
127 salt[9]='l'; salt[10]='e'; salt[11]='$';
128 salt[12]='\0';
129 strcpy(answer,salt);
131 exit (strcmp((char *)crypt("rasmuslerdorf",salt),answer));
155 char salt[30], answer[70];
157salt[0]='$'; salt[1]='2'; salt[2]='a'; salt[3]='$'; salt[4]='0'; salt[5]='7'; salt[6]='$'; salt[7]…
158 strcat(salt,"rasmuslerd............");
159 strcpy(answer,salt);
161 exit (strcmp((char *)crypt("rasmuslerdorf",salt),answer));
185 char salt[21], answer[21+86];
187 strcpy(salt,"\$6\$rasmuslerdorf\$");
188 strcpy(answer, salt);
190 exit (strcmp((char *)crypt("rasmuslerdorf",salt),answer));
214 char salt[21], answer[21+43];
216 strcpy(salt,"\$5\$rasmuslerdorf\$");
217 strcpy(answer, salt);
219 exit (strcmp((char *)crypt("rasmuslerdorf",salt),answer));
272 AC_DEFINE_UNQUOTED(PHP_STD_DES_CRYPT, 1, [Whether the system supports standard DES salt])
273 AC_DEFINE_UNQUOTED(PHP_BLOWFISH_CRYPT, 1, [Whether the system supports BlowFish salt])
274 AC_DEFINE_UNQUOTED(PHP_EXT_DES_CRYPT, 1, [Whether the system supports extended DES salt])
275 AC_DEFINE_UNQUOTED(PHP_MD5_CRYPT, 1, [Whether the system supports MD5 salt])
276 AC_DEFINE_UNQUOTED(PHP_SHA512_CRYPT, 1, [Whether the system supports SHA512 salt])
277 AC_DEFINE_UNQUOTED(PHP_SHA256_CRYPT, 1, [Whether the system supports SHA256 salt])
288 AC_DEFINE_UNQUOTED(PHP_STD_DES_CRYPT, $ac_result, [Whether the system supports standard DES salt])
297 AC_DEFINE_UNQUOTED(PHP_BLOWFISH_CRYPT, $ac_result, [Whether the system supports BlowFish salt])
306 AC_DEFINE_UNQUOTED(PHP_EXT_DES_CRYPT, $ac_result, [Whether the system supports extended DES salt])
315 AC_DEFINE_UNQUOTED(PHP_MD5_CRYPT, $ac_result, [Whether the system supports MD5 salt])
324 AC_DEFINE_UNQUOTED(PHP_SHA512_CRYPT, $ac_result, [Whether the system supports SHA512 salt])
333 AC_DEFINE_UNQUOTED(PHP_SHA256_CRYPT, $ac_result, [Whether the system supports SHA256 salt])