PvPGN Password Hash Tools

REST API

Here are all functions of the site that you can use in your project via API.

URL template:
https://pvpgn.pro/passhash/api.php?method={METHOD_NAME}&{PARAMS}


crack

Method return cracked password from a hash (using http://www.tobtu.com/revxsha1.php)

Parameters

hash  PvPGN hash hex{40}

Example

Call
https://pvpgn.pro/passhash/api.php?method=crack&hash=460e0af6c1828a93fe887cbe103d6ca6ab97a0e4
Result
12345

hash

Method return PvPGN hash from a password

Parameters

password  password string

Example

Call
https://pvpgn.pro/passhash/api.php?method=hash&password=12345
Result
460e0af6c1828a93fe887cbe103d6ca6ab97a0e4

srp

Method return Battle.net SRP verifier from username and password

Parameters

username  user name string
password  password string
salt salt hex{32}, if it is not passed then it will be generate

Example

Call
https://pvpgn.pro/passhash/api.php?method=srp&username=test&password=12345
Result
{"salt":"E32049C83CA325479AD2B6F64E0064763E8BB57B56653DAC8B2FEFBAC3C2F3BF","username":"test",
"password":"12345","verifier":"E95E9A3D6B8DB484D485EFE3E3FE5CDBC1E684ACA2F92803AF2811C9B2FC0AEC"}