Jump to content
  • 0

PHP password create for H5 server


Nightw0lf

Question

I am looking for the equivalent of

$enc_password = base64_encode(pack("H*",sha1(utf8_encode($password))));

for H5 Servers in php

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

silly me H5 has whirlpool solved

$enc_password = base64_encode(hash('whirlpool', $password, TRUE));

Edited by Nightw0lf
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...