-
-
Save Treeston/db44f23503ae9f1542de31cb8d66781e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function CalculateSRP6Verifier($username, $password, $salt) | |
{ | |
// algorithm constants | |
$g = gmp_init(7); | |
$N = gmp_init('894B645E89E1535BBDAD5B8B290650530801B18EBFBF5E8FAB3C82872A3E9BB7', 16); | |
// calculate first hash | |
$h1 = sha1(strtoupper($username . ':' . $password), TRUE); | |
// calculate second hash | |
$h2 = sha1($salt.$h1, TRUE); | |
// convert to integer (little-endian) | |
$h2 = gmp_import($h2, 1, GMP_LSW_FIRST); | |
// g^h2 mod N | |
$verifier = gmp_powm($g, $h2, $N); | |
// convert back to a byte array (little-endian) | |
$verifier = gmp_export($verifier, 1, GMP_LSW_FIRST); | |
// pad to 32 bytes, remember that zeros go on the end in little-endian! | |
$verifier = str_pad($verifier, 32, chr(0), STR_PAD_RIGHT); | |
// done! | |
return $verifier; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment