2016-07-04 13:45:29 +00:00
|
|
|
<?php define('__ROOT__', dirname(dirname(__FILE__)) );
|
|
|
|
require_once __ROOT__.'/manager/autoloader.php';
|
|
|
|
debug();
|
|
|
|
|
|
|
|
use \manager\sessionManager;
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-07-07 15:59:31 +00:00
|
|
|
$hash = 'password';
|
2016-07-04 13:45:29 +00:00
|
|
|
|
2016-07-08 13:18:23 +00:00
|
|
|
var_dump( sessionManager::secure_hash($hash, 1000) );
|
2016-07-04 13:45:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
?>
|