Issue #3443198: Remove deprecated code from phpPass + bigpipe
1 unresolved thread
Closes #3443198
Merge request reports
Activity
added 1 commit
- 25a80c15 - more clean-up for PhpassHashedPasswordBase and remove legacy test
111 81 return $output; 112 82 } 113 83 114 /** 115 * Generates a random base 64-encoded salt prefixed with hash settings. 116 * 117 * Proper use of salts may defeat a number of attacks, including: 118 * - The ability to try candidate passwords against multiple hashes at once. 119 * - The ability to use pre-hashed lists of candidate passwords. 120 * - The ability to determine whether two users have the same (or different) 121 * password without actually having to guess one of the passwords. 122 * 123 * @return string 124 * A 12 character string containing the iteration count and a random salt. 125 */ 126 protected function generateSalt() {
Please register or sign in to reply