Lines Matching defs:method

21      * The method and salt used for the crypted hash is determined automatically,
22 * then the clear text password is crypted using the same method. If both hashs
34 $method = '';
38 //determine the used method and salt
47 $method = 'smd5';
51 $method = 'apr1';
55 $method = 'drupal_sha512';
59 $method = 'pmd5';
63 $method = 'pmd5';
67 $method = 'djangopbkdf2';
71 $method = 'seafilepbkdf2';
75 $method = 'djangosha1';
78 $method = 'djangomd5';
81 $method = 'bcrypt';
84 $method = 'ssha';
87 $method = 'lsmd5';
90 $method = 'mediawiki';
93 $method = 'sha2';
102 $method = 'md5';
104 $method = 'sha1';
106 $method = 'mysql';
108 $method = 'my411';
110 $method = 'kmd5';
113 $method = 'crypt';
118 $call = 'hash_' . $method;
164 * Password hashing method 'smd5'
168 * The same mechanism is used by Apache's 'apr1' method. This will
193 * Password hashing method 'lsmd5'
210 * Password hashing method 'apr1'
262 * Password hashing method 'md5'
275 * Password hashing method 'sha1'
288 * Password hashing method 'ssha' as used by LDAP
303 * Password hashing method 'crypt'
318 * Password hashing method 'mysql'
320 * This method was used by old MySQL systems
344 * Password hashing method 'my411'
346 * Uses SHA1 hashs. This method is used by MySQL 4.11 and above
357 * Password hashing method 'kmd5'
452 * Password hashing method 'pmd5'
475 * Password hashing method 'drupal_sha512'
513 * Password hashing method 'djangosha1'
531 * Password hashing method 'djangomd5'
549 * Password hashing method 'seafilepbkdf2'
563 * @throws Exception when PHP is missing support for the method/algo
591 * Password hashing method 'djangopbkdf2'
600 * @throws \Exception when PHP is missing support for the method/algo
633 * @throws \Exception when PHP is missing support for the method/algo
648 * @throws \Exception when PHP is missing support for the method/algo
657 * Passwordhashing method 'bcrypt'
660 * This method works on PHP 5.3+ only and will throw an exception
689 * Password hashing method SHA-2
700 * @param array $opts ('rounds' => rounds for sha256/sha512, 'prefix' => selected method from SHA-2 family)
745 * Password hashing method 'mediawiki'
748 * method 'A' is not supported.
764 * Password hashing method 'argon2i'
783 * Password hashing method 'argon2id'
804 * This is not directly used as password hashing method, and thus isn't callable via the
805 * verify_hash() method. It should be used to create signatures and might be used in other