This is an old revision of the document!
This PHP
function creates an uppercase SHA
password, ready to be inserted into the realm
database.
function wow_sha_password($user,$pass){ $user = strtoupper($user); $pass = strtoupper($pass); return strtoupper(SHA1($user.':'.$pass)); }
For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.