PocketDice is Provably Fair. What that means is that there is no way the site can cheat you by picking numbers to make you lose.
To achieve Provably Fair Gaming we utilise strong cryptographic algorithms such as SHA256, Mersenne Twister and Fisher-Yates shuffle. These ensure the game cannot be tampered with.
Technical Implementation
- We generate 30 initial random numbers ranging from 1 to 6.
- We generate random server seed.
- The initial numbers are hashed using hash('sha256', json_encode($initial_numbers) . $server_seed). The resulting hash is made public.
- When you start a game, we use javascript in your browser to create a client seed.
- The initial numbers are shuffled calling Fisher-Yates shuffle with client seed.

Our Ratings
Reviews (0)
No comments yet. Be the first to comment!