Lines Matching defs:method
723 * default ACL check method
1324 * Encrypts a password using the given method and salt
1326 * If the selected method needs a salt and none was given, a random one
1334 * @param string $method The hashing method
1338 function auth_cryptPassword($clear, $method = '', $salt = null)
1346 if (empty($method)) $method = $conf['passcrypt'];
1349 $call = 'hash_' . $method;
1352 msg("Unsupported crypt method $method", -1);