En ole varma kuinka luotettava tämä on:
https://libratybet.com/provably-fair
se sanoo: Todistetusti reilua
Rullaa numerot
Libratybet luo rullan numeron monivaiheisen prosessin avulla rullan numeron 0-99.99 luomiseksi. Sekä asiakkaan että palvelimen siemenet ja nonce yhdistetään HMAC_SHA512:een, joka luo heksadesimaalisen merkkijonon. Nonce on vetojen lukumäärä, jonka olet tehnyt nykyisellä alkuparilla. Ensimmäiset viisi merkkiä otetaan heksadesimaattisesta merkkijonosta, jolloin saadaan rullanumero, joka on 0-1 048 575. Jos rullan numero on yli 999 999, prosessi toistetaan niin, että seuraavat viisi merkkiä ohittavat edellisen sarjan. Tätä tehdään, kunnes saavutetaan luku, joka on pienempi kuin 1 000 000. Siinä tähtitieteellisesti epätodennäköisessä tapauksessa, että kaikki mahdolliset 5 merkkiyhdistelmät ovat suurempia, rullan numerona käytetään 99,99. Tuloksena olevaa lukua 0-999,999 käytetään moduulilla 10^4, jolloin saadaan rullan numero 0-9999, ja jaetaan luvulla 10^2, jolloin saadaan luku 0-99,99.
const roll = ({ serverSeed, clientSeed, nonce }) => {
const nonceClientSeed = `${clientSeed}-${nonce}`;
const hex = createHmac('sha512', serverSeed)
.update(nonceClientSeed)
.digest('hex');
olkoon indeksi = 0;
anna lucky = parseInt(hex.substring(indeksi * 5, indeksi * 5 + 5), 16);
while (onnekas >= 1e6) {
indeksi += 1;
onnekas = parseInt(heksa.osamerkkijono(indeksi * 5, indeksi * 5 + 5), 16);
// olemme päässeet hashin loppuun ja niiden kaikkien on täytynyt olla ffffff
jos (indeksi * 5 + 5 > 129) {
onnekas = 9999;
tauko;
}
}
paluu [onnen % 1e4] * 1e-2;
}
Not sure how reliable this is:
https://libratybet.com/provably-fair
it says: Provably fair
Roll Numbers
To create a roll number, Libratybet uses a multi-step process to create a roll number 0-99.99. Both client and server seeds and a nonce are combined with HMAC_SHA512 which will generate a hex string. The nonce is the # of bets you made with the current seed pair. First five characters are taken from the hex string to create a roll number that is 0-1,048,575. If the roll number is over 999,999, the process is repeated with the next five characters skipping the previous set. This is done until a number less than 1,000,000 is achieved. In the astronomically unlikely event that all possible 5 character combinations are greater, 99.99 is used as the roll number. The resulting number 0-999,999 is applied a modulus of 10^4, to obtain a roll number 0-9999, and divided by 10^2 to result a 0-99.99 number.
const roll = ({ serverSeed, clientSeed, nonce }) => {
const nonceClientSeed = `${clientSeed}-${nonce}`;
const hex = createHmac('sha512', serverSeed)
.update(nonceClientSeed)
.digest('hex');
let index = 0;
let lucky = parseInt(hex.substring(index * 5, index * 5 + 5), 16);
while (lucky >= 1e6) {
index += 1;
lucky = parseInt(hex.substring(index * 5, index * 5 + 5), 16);
// we have reached the end of the hash and they all must have been ffffff
if (index * 5 + 5 > 129) {
lucky = 9999;
break;
}
}
return [lucky % 1e4] * 1e-2;
}
Automaattinen käännös: