<?php
error_reporting(E_ALL | E_STRICT);
-define('HASH_ALGO' , MHASH_RIPEMD320);
-define('BLOCK_SIZE' , 100);
-define('NONCE_INCREMENT' , 0.0000000000000001);
define('START_TIME' , microtime(TRUE));
define('CHECK_POINT' , 'chash.pos');
-define('FLUSH_BLOCKS_FILE_TIME', 10);
-define('RESTART_SEARCH_TIME' , 3600);
+
+$GLOBALS['block_size'] = 100;
+$GLOBALS['none_increment'] = (1 / pow(10, 12));
+$GLOBALS['hash_algo'] = MHASH_RIPEMD320;
+$GLOBALS['flush_file_time'] = 10;
+$GLOBALS['restart_search_time'] = 3600 * 12;
// Hashes per call
-$GLOBALS['cycles'] = 3;
+$GLOBALS['hash_cycles'] = 3;
// Found hashes
$GLOBALS['found_hashes'] = array(0 => array());
*/
function hashString ($str) {
// Calculate strong hash from given string
- $hash = mhash(HASH_ALGO, $str);
+ $hash = mhash($GLOBALS['hash_algo'], $str);
// Return it hexadecimal-encoded
return bin2hex($hash);
* @return $hash The generated hash
*/
function multipleHashString ($str) {
- // One less to go (see below)
- $totalHashes = $GLOBALS['cycles'] - 1;
-
// Generate hash from given hash
$hash = hashString($str);
// Now over-hash it
- for ($idx = 0; $idx < $totalHashes; $idx++) {
+ for ($idx = 0; $idx < ($GLOBALS['hash_cycles'] - 1); $idx++) {
// Over-hash the given hash
$hash = hashString($hash);
} // END - for
// Loop through hash
for ($idx = 0; $idx < (strlen($hash) / 2); $idx++) {
// And add it
- $sum = $sum + (hexdec(substr($hash, $idx, 2)) * $idx & 256);
+ $sum = $sum + hexdec(substr($hash, $idx, 2));
} // END - for
// And return it
*/
function calculateNonce () {
// Linear incrementation
- $GLOBALS['nonce'] = $GLOBALS['nonce'] + NONCE_INCREMENT;
+ $GLOBALS['nonce'] = $GLOBALS['nonce'] + $GLOBALS['none_increment'];
}
/**
$timer = microtime(TRUE);
// Flush data
- file_put_contents(CHECK_POINT, $GLOBALS['total_blocks'] . ':' . $GLOBALS['total_reward'] . ':' . $GLOBALS['total_hashes'] . ':' . $GLOBALS['cycles'] . ':' . base64_encode($GLOBALS['nonce']) . ':' . $hash . ':' . $GLOBALS['root_hash'] . ':' . base64_encode(gzcompress(serialize($GLOBALS['found_hashes']))));
+ file_put_contents(CHECK_POINT, $GLOBALS['total_blocks'] . ':' . $GLOBALS['total_reward'] . ':' . $GLOBALS['total_hashes'] . ':' . $GLOBALS['hash_cycles'] . ':' . base64_encode($GLOBALS['nonce']) . ':' . $hash . ':' . $GLOBALS['root_hash'] . ':' . base64_encode(gzcompress(serialize($GLOBALS['found_hashes']))));
// Set time
$GLOBALS['time_flush'] = microtime(TRUE);
* @param $hash Hash to save
*/
function addFoundHash ($hash) {
+ // Increment counter
+ $GLOBALS['current_hashes']++;
+
// Add hash to array
array_push($GLOBALS['found_hashes'][$GLOBALS['total_blocks']], array(
'modula_hash' => $GLOBALS['modula_hash'],
'nonce' => $GLOBALS['nonce'],
'iter' => $GLOBALS['iteration'],
'hashes_block' => $GLOBALS['hashes_block'],
+ 'hash_cycles' => $GLOBALS['hash_cycles'],
'nonce_hash' => $hash
));
// Found hash:
- print ('FOUND: hash=' . $hash . ',nonce=' . $GLOBALS['nonce'] . ',iteration=' . $GLOBALS['iteration'] . ',foundTime()=' . (microtime(TRUE) - $GLOBALS['found_time'] ) . PHP_EOL);
+ print ('FOUND: hash=' . $hash . ',nonce=' . $GLOBALS['nonce'] . ',current_hashes=' . $GLOBALS['current_hashes'] . PHP_EOL);
// Set time as a new hash was found
$GLOBALS['found_time'] = microtime(TRUE);
flushCheckPointFile($hash);
// Use nonceHash as next modula hash
- $GLOBALS['modula_hash'] = $hash;
+ setModulaHash($hash);
}
/**
print (__FUNCTION__ . ': nonce=' . $GLOBALS['nonce'] . PHP_EOL);
}
+/**
+ * Sets modula hash and calculates sum of it
+ *
+ * @param $hash Hash to set as "modula hash"
+ * @return void
+ */
+function setModulaHash ($hash) {
+ $GLOBALS['modula_hash'] = $hash;
+ $GLOBALS['sum_modula'] = calculateSumFromHash($GLOBALS['modula_hash']);
+}
+
/*
* Calculate "genesis" hashes, please note that these "genesis strings" are now
* known to the public as you can read them here in source code and therefore I
);
// Calulcate modula hash
-$GLOBALS['modula_hash'] = multipleHashString(modulaHash($sqrtHashes[0], $sqrtHashes[1]));
+setModulaHash(multipleHashString(modulaHash($sqrtHashes[0], $sqrtHashes[1])));
// This is also the "genesis" hash and first root hash
$GLOBALS['genesis_hash'] = $GLOBALS['modula_hash'];
print ('modulaHash=' . $GLOBALS['modula_hash'] . PHP_EOL);
// Total reward + hashes
-$GLOBALS['total_reward'] = 0;
-$GLOBALS['total_hashes'] = 0;
-$GLOBALS['total_blocks'] = 0;
-$GLOBALS['found_time'] = microtime(TRUE);
+$GLOBALS['total_reward'] = 0;
+$GLOBALS['total_hashes'] = 0;
+$GLOBALS['total_blocks'] = 0;
+$GLOBALS['current_hashes'] = 0;
+$GLOBALS['found_time'] = microtime(TRUE);
// Is the check point there?
if (is_readable(CHECK_POINT)) {
$GLOBALS['total_blocks'] = $data[0];
$GLOBALS['total_reward'] = $data[1];
$GLOBALS['total_hashes'] = $data[2];
- $GLOBALS['cycles'] = intval($data[3]);
+ $GLOBALS['hash_cycles'] = intval($data[3]);
$GLOBALS['nonce'] = base64_decode($data[4]);
- $GLOBALS['modula_hash'] = $data[5];
$GLOBALS['root_hash'] = $data[6];
$GLOBALS['found_hashes'] = unserialize(gzuncompress(base64_decode($data[7])));
+
+ // Set modula hash
+ setModulaHash($data[5]);
} else {
// Create nonce (small)
initNonce();
$GLOBALS['hashes_block'] = 0;
$hashrate = 0;
- // Wait for BLOCK_SIZE iterations (= found hashes). This is one block
+ // Wait for block_size iterations (= found hashes). This is one block
$timeBlock = microtime(TRUE);
$timeDisplay = $timeBlock;
$GLOBALS['time_flush'] = $timeBlock;
// Time waited for a good block again (no iteration)
$timeBadHashes = 0;
- while (count($GLOBALS['found_hashes'][$GLOBALS['total_blocks']]) <= BLOCK_SIZE) {
+ while (count($GLOBALS['found_hashes'][$GLOBALS['total_blocks']]) <= $GLOBALS['block_size']) {
// Create hash from modulaHash ("genesis hash") and nonce
- $nonceHash = multipleHashString($GLOBALS['modula_hash'] . $GLOBALS['nonce']);
+ $nonceHash = multipleHashString($GLOBALS['nonce'] . $GLOBALS['modula_hash']);
// Calculate sums
$sumNonce = calculateSumFromHash($nonceHash);
- $sumModula = calculateSumFromHash($GLOBALS['modula_hash']);
// Init counter
$GLOBALS['iteration'] = 0;
// Now start the "mining" ...
$timeHash = microtime(TRUE);
- while ($sumNonce >= $sumModula) {
+ while ($sumNonce < $GLOBALS['sum_modula']) {
// Calculate new nonce
calculateNonce();
// And hash again
- $nonceHash = multipleHashString($GLOBALS['modula_hash'] . $GLOBALS['nonce']);
+ $nonceHash = multipleHashString($GLOBALS['nonce'] . $GLOBALS['modula_hash']);
// Calculate sums
$sumNonce = calculateSumFromHash($nonceHash);
$testTime = abs(microtime(TRUE) - $timeDisplay);
// Calculate hashrate/sec
- $hashrate = 1 / $testTime * $GLOBALS['iteration_second'] * $GLOBALS['cycles'];
+ $hashrate = 1 / $testTime * $GLOBALS['iteration_second'] * $GLOBALS['hash_cycles'];
// Only every second
if ($testTime >= 1) {
$testTime = abs(microtime(TRUE) - $GLOBALS['time_flush']);
// Only once per 10 seconds
- if ($testTime >= FLUSH_BLOCKS_FILE_TIME) {
+ if ($testTime >= $GLOBALS['flush_file_time']) {
// Flush check-point file
flushCheckPointFile($GLOBALS['modula_hash']);
} // END - if
$testTime = abs(microtime(TRUE) - $GLOBALS['found_time']);
// Is the last found time to far away?
- if ($testTime >= RESTART_SEARCH_TIME) {
+ if ($testTime >= $GLOBALS['restart_search_time']) {
// Count all root (genesis) hashes
$rootHashes = array();
foreach ($GLOBALS['found_hashes'] as $block) {
// Search for latest best root hash
foreach ($GLOBALS['found_hashes'] as $block) {
- // "Walk" through whole block counter-wise
- for ($idx = (count($block) - 1); $idx > 0; $idx--) {
+ // "Walk" through whole block and search for first appearance of best root hash
+ foreach ($block as $idx => $hash) {
// Is the root hash there?
- if ($block[$idx]['root_hash'] == $bestRootHash) {
+ if ($hash['root_hash'] == $bestRootHash) {
// Set found modula hash as new root and current modula hash
- $GLOBALS['root_hash'] = $block[$idx]['modula_hash'];
- $GLOBALS['modula_hash'] = $block[$idx]['modula_hash'];
+ $GLOBALS['root_hash'] = $hash['nonce_hash'];
+ setModulaHash($hash['nonce_hash']);
print ('idx=' . $idx . ',modulaHash=' . $GLOBALS['root_hash'] . ' - Is now new root hash!' . PHP_EOL);
// Reset "found time" (when a hash was found)
//print ('nonce=' . $GLOBALS['nonce'] . ',iteration=' . $GLOBALS['iteration'] . PHP_EOL);
//print ('nonceHash=' . $nonceHash . PHP_EOL);
//print ('sumNonce=' . $sumNonce . PHP_EOL);
- //print ('sumModula=' . $sumModula . PHP_EOL);
+ //print ('sumModula=' . $GLOBALS['sum_modula'] . PHP_EOL);
} // END - while
// If the iteration is zero, then no hash is found
} // END - if
// Add amount of hashes per block (multiple-hash)
- $GLOBALS['hashes_block'] += $GLOBALS['iteration'] * $GLOBALS['cycles'] + $GLOBALS['cycles'];
+ $GLOBALS['hashes_block'] += $GLOBALS['iteration'] * $GLOBALS['hash_cycles'] + $GLOBALS['hash_cycles'];
// Push found hash
addFoundHash($nonceHash);
$timeBlock = abs(microtime(TRUE) - $timeBlock);
// Calculate reward
- $reward = abs($timeBlock - $timeBadHashes) / $hashrate * $GLOBALS['hashes_block'] / BLOCK_SIZE * 1000;
+ $reward = abs($timeBlock - $timeBadHashes) / $hashrate * $GLOBALS['hashes_block'] / $GLOBALS['block_size'] * 1000;
print ('timeBlock=' . $timeBlock . ',timeBadHashes=' . $timeBadHashes . ',hashesPerBlock=' . $GLOBALS['hashes_block'] .',reward=' . $reward . PHP_EOL);
// Block completed
$GLOBALS['total_reward'] += $reward;
// Calculate average block value
- $blockValue = $GLOBALS['total_reward'] / $GLOBALS['total_blocks'] * $GLOBALS['total_hashes'] / (BLOCK_SIZE * $GLOBALS['total_blocks']);
+ $blockValue = $GLOBALS['total_reward'] / $GLOBALS['total_blocks'] * $GLOBALS['total_hashes'] / ($GLOBALS['block_size'] * $GLOBALS['total_blocks']);
// Calculate reward per hour (= 3600 seconds)
$rewardPerHour = $GLOBALS['total_reward'] / abs(microtime(TRUE) - START_TIME) * 3600;