BC.Game Hash Dice Verifier

Verify the fairness of BC.Game Hash Dice rolls using HMAC-SHA512 verification.

Bet Information

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

  1. Generate HMAC-SHA512(serverSeed, clientSeed:nonce)
  2. Take 5 hex characters from the hash starting at index 0
  3. Convert to decimal - if ≥ 1,000,000, move to next 5 characters
  4. Repeat until finding a value < 1,000,000
  5. Calculate final result: lucky value % 100,000