Ruleta Probablemente Justa
Verifique su último resultado de giro, ejecute el código a continuación por usted mismo
- Cuenta
- Próximo Hash de Semilla
- Semilla Revelada
- Resultado del Giro
- 0
#!/usr/bin/env node
const crypto = require("crypto");
// calculate hash from seed
function hash() {
return crypto.createHash("sha256").update(
""
).digest("hex");
};
function calculateNumber () {
const hmac = crypto
.createHmac("sha512", "")
.update(
""
)
.digest("hex");
const first7 = hmac.substring(0, 7);
return Math.round(parseInt(first7, 16)
/ 33);
}
// caculateNumber() === 0