mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-03 09:10:01 +01:00
122c6586bc
- Create php sample for PBKDF2 - Rename pbkdf2 java classes (remove Crypt prefix) - Remove options from hash setting comment that should not be used
49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
<?php
|
|
|
|
/***********************************************************
|
|
* AuthMe website integration logic for SHA256 *
|
|
* ------------------------------------------------------- *
|
|
* See AuthMeController for details. *
|
|
* *
|
|
* Source: https://github.com/AuthMe/AuthMeReloaded/ *
|
|
***********************************************************/
|
|
class Sha256 extends AuthMeController {
|
|
|
|
/** @var string[] range of characters for salt generation */
|
|
private $CHARS;
|
|
|
|
const SALT_LENGTH = 16;
|
|
|
|
public function __construct() {
|
|
$this->CHARS = self::initCharRange();
|
|
}
|
|
|
|
protected function isValidPassword($password, $hash) {
|
|
// $SHA$salt$hash, where hash := sha256(sha256(password) . salt)
|
|
$parts = explode('$', $hash);
|
|
return count($parts) === 4 && $parts[3] === hash('sha256', hash('sha256', $password) . $parts[2]);
|
|
}
|
|
|
|
protected function hash($password) {
|
|
$salt = $this->generateSalt();
|
|
return '$SHA$' . $salt . '$' . hash('sha256', hash('sha256', $password) . $salt);
|
|
}
|
|
|
|
/**
|
|
* @return string randomly generated salt
|
|
*/
|
|
private function generateSalt() {
|
|
$maxCharIndex = count($this->CHARS) - 1;
|
|
$salt = '';
|
|
for ($i = 0; $i < self::SALT_LENGTH; ++$i) {
|
|
$salt .= $this->CHARS[mt_rand(0, $maxCharIndex)];
|
|
}
|
|
return $salt;
|
|
}
|
|
|
|
private static function initCharRange() {
|
|
return array_merge(range('0', '9'), range('a', 'f'));
|
|
}
|
|
|
|
}
|