Lines Matching refs:salt

124     char salt[15], answer[40];
126 salt[0]='$'; salt[1]='1'; salt[2]='$';
127 salt[3]='r'; salt[4]='a'; salt[5]='s';
128 salt[6]='m'; salt[7]='u'; salt[8]='s';
129 salt[9]='l'; salt[10]='e'; salt[11]='$';
130 salt[12]='\0';
131 strcpy(answer,salt);
133 exit (strcmp((char *)crypt("rasmuslerdorf",salt),answer));
157 char salt[30], answer[70];
159salt[0]='$'; salt[1]='2'; salt[2]='a'; salt[3]='$'; salt[4]='0'; salt[5]='7'; salt[6]='$'; salt[7]…
160 strcat(salt,"rasmuslerd............");
161 strcpy(answer,salt);
163 exit (strcmp((char *)crypt("rasmuslerdorf",salt),answer));
187 char salt[30], answer[80];
189salt[0]='$'; salt[1]='6'; salt[2]='$'; salt[3]='$'; salt[4]='b'; salt[5]='a'; salt[6]='r'; salt[7]…
190 strcpy(answer, salt);
192 exit (strcmp((char *)crypt("foo",salt),answer));
216 char salt[30], answer[80];
217salt[0]='$'; salt[1]='5'; salt[2]='$'; salt[3]='$'; salt[4]='s'; salt[5]='a'; salt[6]='l'; salt[7]…
218 strcat(salt,"");
219 strcpy(answer, salt);
221 exit (strcmp((char *)crypt("foo",salt),answer));
273 AC_DEFINE_UNQUOTED(PHP_STD_DES_CRYPT, 1, [Whether the system supports standard DES salt])
274 AC_DEFINE_UNQUOTED(PHP_BLOWFISH_CRYPT, 1, [Whether the system supports BlowFish salt])
275 AC_DEFINE_UNQUOTED(PHP_EXT_DES_CRYPT, 1, [Whether the system supports extended DES salt])
276 AC_DEFINE_UNQUOTED(PHP_MD5_CRYPT, 1, [Whether the system supports MD5 salt])
277 AC_DEFINE_UNQUOTED(PHP_SHA512_CRYPT, 1, [Whether the system supports SHA512 salt])
278 AC_DEFINE_UNQUOTED(PHP_SHA256_CRYPT, 1, [Whether the system supports SHA256 salt])
289 AC_DEFINE_UNQUOTED(PHP_STD_DES_CRYPT, $ac_result, [Whether the system supports standard DES salt])
298 AC_DEFINE_UNQUOTED(PHP_BLOWFISH_CRYPT, $ac_result, [Whether the system supports BlowFish salt])
307 AC_DEFINE_UNQUOTED(PHP_EXT_DES_CRYPT, $ac_result, [Whether the system supports extended DES salt])
316 AC_DEFINE_UNQUOTED(PHP_MD5_CRYPT, $ac_result, [Whether the system supports MD5 salt])
325 AC_DEFINE_UNQUOTED(PHP_SHA512_CRYPT, $ac_result, [Whether the system supports SHA512 salt])
334 AC_DEFINE_UNQUOTED(PHP_SHA256_CRYPT, $ac_result, [Whether the system supports SHA256 salt])