Skip to content

Instantly share code, notes, and snippets.

View m-primo's full-sized avatar
🌴

Primo m-primo

🌴
View GitHub Profile
@m-primo
m-primo / HexSHA512.class.php
Last active October 3, 2022 09:09
Hash & Verify - sha512 & hex.. php
final class HexSHA512 {
public static final function Hash($s) {
return (bin2hex(hash('sha512', $s.bin2hex($s), true)));
}
public static final function Verify($s, $h) {
return (HexSHA512::Hash($s) == $h);
}
}
$s = "hello there";