05.01.2017, 12:55
Quote:
how to connect with website pcp if i wanna login?
example with whirlpool, use wp_hash |
Here is list for in-game function and corresponding php function :
sha1(const text[], hash[]) - hash("sha1", $password)
sha2(const text[], hash[]) - hash("sha256", $password)
md5(const text[], hash[]) - hash("md5", $password) (Not recommended to use this now)
Out of above three hashing algorithms sha2 is most secure BUT now sa-mp has native function for sha-256 hash( https://sampwiki.blast.hk/wiki/SHA256_PassHash ) so if you want to use sha256 use the native function.
However whirlpool is still better than the above hash algorithms.