Skip to content

Instantly share code, notes, and snippets.

@adaptive
Created October 5, 2008 21:17
Show Gist options
  • Save adaptive/14936 to your computer and use it in GitHub Desktop.
Save adaptive/14936 to your computer and use it in GitHub Desktop.
generating hashes in php (SHA-256, SHA-512)
<?php
// SHA-256, SHA-512
$var = 'lorem ipsum';
$hash256=hash('sha256', $var);
$hash512=hash('sha512', $var);
echo $hash256 $hash512;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment