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