为了保证随机数生成器的真实性,我们的想法是,如果用户愿意,他们可以验证该数字实际上是从公共熵源生成的。这使系统能够确保服务器无法选择随机数的用户。
$entropy = "what_do_you_think";
$md5 = md5($entropy);
/*take the first 10 hex characters of the md5 hash*/
$hex = substr($md5, 0, 9);
/*convert the hex to decimal*/
$dec = hexdec($hex);
/*use this decimal as a seed*/
srand($dec);
/*pick a random number between 0 and 9, ultimately seeded by the entropy*/
$rand = rand(0,9);
我的问题是:有哪些好的公共熵源(最好是不可变的和混乱的),并且绝对可以引用,它们可以连接在一起形成一个字符串并输入 md5?一些想法是特定的股票价格、温度(来自诚实的来源)、比特币区块链中包含的哈希值......