| 
<?php
 /**
 * This is as basic as it gets. The password will be hashed using the blwofish algorithm
 * with a cost of 10 and a cryptographically strong salt with strong entropy.
 */
 
 require_once('Password.php');
 
 $pw = new Password;
 $hashed = $pw->hash('verysecret');
 var_dump($hashed);
 |