43 lines
882 B
PHP
43 lines
882 B
PHP
|
#!/usr/bin/php
|
||
|
|
||
|
<?php
|
||
|
|
||
|
require_once __DIR__.'/../../include/const';
|
||
|
|
||
|
|
||
|
function cyclichash_hash(){
|
||
|
|
||
|
/* [1] Fetch necessary data
|
||
|
=========================================================*/
|
||
|
/* (1) Fetch secret file */
|
||
|
$secret = @file_get_contents(SECRET_CONF);
|
||
|
|
||
|
/* (2) Check secret file format */
|
||
|
if( !is_string($secret) || !preg_match("/^(.{".SECRET_SIZE."}):(\d+)$/", $secret, $match) )
|
||
|
return 127;
|
||
|
|
||
|
/* (3) Extract data for hashing from @secret */
|
||
|
$key = (string) $match[1];
|
||
|
$depth = (int) $match[2];
|
||
|
|
||
|
|
||
|
/* [2] Hash data
|
||
|
=========================================================*/
|
||
|
/* (1) Initialize with data */
|
||
|
$hash = $key;
|
||
|
|
||
|
/* (2) Hash @depth times */
|
||
|
for( $d = 0 ; $d < $depth ; $d++ )
|
||
|
$hash = hash('sha512', $hash);
|
||
|
|
||
|
|
||
|
slog("Returning hash with $depth depth", 'cyclic-hash:hash');
|
||
|
return $hash;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
echo cyclichash_hash();
|
||
|
?>
|
||
|
|