BC.Game Hash Dice Verifier
Verify the fairness of BC.Game Hash Dice rolls using HMAC-SHA512 verification.
Verification Results
Enter your bet data and click verify to see results
About Hash Dice
Verification
Hash Dice uses HMAC-SHA512 with a special algorithm: it takes 5 hex characters at a time from the hash, converts to decimal, and skips values ≥ 1,000,000 until finding a valid value. The final result is (lucky value) % 100,000, giving a result between 0-99,999.
Algorithm Steps
- Generate HMAC-SHA512(serverSeed, clientSeed:nonce)
- Take 5 hex characters from the hash starting at index 0
- Convert to decimal - if ≥ 1,000,000, move to next 5 characters
- Repeat until finding a value < 1,000,000
- Calculate final result: lucky value % 100,000