You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a loop around the above code, as seen every two hours the loop runs again, the seed for the algo is using a REAL random number from USB generator, I like sha3 its what ETH uses Kecak I think much better than NSA SHA256 used on BTC.
The text was updated successfully, but these errors were encountered:
The Czech $40USD USB random number generators are real good about generating real random numbers to seed the algo that feeds new keys to the engine;
I will post code example ( bash linux )
here /dev/random uses the onerng usb random generator to get the seed
e=$(cat /proc/sys/kernel/random/entropy_avail)
h=$( head -c $e /dev/random | sha3sum -b -a 256 | awk '{print $1}' ); echo $h
echo '/dev/random from onerng'
timeout 120m /mnt/Mining/Crypto/vanity-search/VanitySearch -gpu -s "$h" -gpu -gpuId 3 -t 1 -r 5000 $prefix
There is a loop around the above code, as seen every two hours the loop runs again, the seed for the algo is using a REAL random number from USB generator, I like sha3 its what ETH uses Kecak I think much better than NSA SHA256 used on BTC.
The text was updated successfully, but these errors were encountered: