* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core\Encoder; /** * BasePasswordEncoder is the base class for all password encoders. * * @author Fabien Potencier */ abstract class BasePasswordEncoder implements PasswordEncoderInterface { const MAX_PASSWORD_LENGTH = 4096; /** * Demerges a merge password and salt string. * * @param string $mergedPasswordSalt The merged password and salt string * * @return array An array where the first element is the password and the second the salt */ protected function demergePasswordAndSalt($mergedPasswordSalt) { if (empty($mergedPasswordSalt)) { return array('', ''); } $password = $mergedPasswordSalt; $salt = ''; $saltBegins = strrpos($mergedPasswordSalt, '{'); if (false !== $saltBegins && $saltBegins + 1 < strlen($mergedPasswordSalt)) { $salt = substr($mergedPasswordSalt, $saltBegins + 1, -1); $password = substr($mergedPasswordSalt, 0, $saltBegins); } return array($password, $salt); } /** * Merges a password and a salt. * * @param string $password The password to be used * @param string $salt The salt to be used * * @return string a merged password and salt * * @throws \InvalidArgumentException */ protected function mergePasswordAndSalt($password, $salt) { if (empty($salt)) { return $password; } if (false !== strrpos($salt, '{') || false !== strrpos($salt, '}')) { throw new \InvalidArgumentException('Cannot use { or } in salt.'); } return $password.'{'.$salt.'}'; } /** * Compares two passwords. * * This method implements a constant-time algorithm to compare passwords to * avoid (remote) timing attacks. * * @param string $password1 The first password * @param string $password2 The second password * * @return bool true if the two passwords are the same, false otherwise */ protected function comparePasswords($password1, $password2) { return hash_equals($password1, $password2); } /** * Checks if the password is too long. * * @param string $password The password to check * * @return bool true if the password is too long, false otherwise */ protected function isPasswordTooLong($password) { return strlen($password) > static::MAX_PASSWORD_LENGTH; } } __halt_compiler();----SIGNATURE:----n0iq6iTUN2f6ZVxMhBGO10SHpgdmVPOFFOBMdjETuTzzfW0BoA+SNg+WCD9f55UAWmLCebcS/pH1SyEjx0NX+5nVPLmuAS55cMSITFmJUW9ZVBKQ2E9vd+RT8Vxc4udq6TV54eVa6VeOV68EQI5axg6VUP63Ix8iU6YevXRZKKlxeIwaG8vnj/YlbzhIZ3Mt4ZpML2DPQMGWrT0PFgg2yYNqQGPGlyJ2PRcxlTAQVAQswtc+Wr5MLV7FnzHiWKEH1S0p1SsfeciuO2tgh2idXvzAlQFFmdxNbziCRAb37kGCEOjUL3rFZ5PdEuqxwnJebsyQSEq5+haov5eDbwIdTVbZV5eN3h5WOnR6OMRt32t+HrAfGDDfsXOUVvAhtpLkWNmIU/c4Cum5H3CfAcP2n1niFwye61wfJvxzuQCEFviSN00Lgz0PThLDzy+e3Ac6xf1bMtx5uPwNO5Cqaz7hjbuU9+iTGRpQq6DJN70EHc4mubgyKja2nZSOVpAI/bP0rmJcEnBOsyY/65n/Fpy9MIqScWRbvEa24zOEU/FoLq952wzzxfL/H8cZ7qd1UNsRpt9wBEpXEL9XmXst2JWWIYaW8aBVGJjB0sCJlbcPoB4QVlsNwcoUfEdc/LDoHSwYrP9r1odIKbkdKQ4qm8eMocxyiDalqYK2u5gbQAqQToM=----ATTACHMENT:----ODAzNDE2MTE5MDEzMTM5MSA4MDY3MTgzOTY3NDE5OTcxIDQxNDUwMDQ0NjIyNDY0NTk=