There are to parties in this game, that might not trust each other. So if it comes to throwing the dice, it is not sufficient for the rolling party to say "I got 6 and 6" for the other party will not believe this. And the sceptic does have a point here, as the opponent may announce any value that he or she likes.
In order to solve this problem, a symetric protocol has been designed to negotiate the values of the dice.
A pair of dice, each ranging from 1 to 6, has got 36 possibilites of appearance. (1,2) is not the same as (2,1). So all possible throws can be enumerated from 0 to 35. It thus suffices to negotiate an integer number N, 0 ≤ N < 36.
In cryptography, a cryptographic hash function is a hash function with certain additional security properties to make it suitable for use as a primitive in various information security applications, such as authentication and message integrity. A hash function takes a long string (or message) of any length as input and produces a fixed length string as output, sometimes termed a message digest or a digital fingerprint.
from Wikipedia on cryptographic hash functions. See there for more information.
The used hash function is called SHA. SHA(x)
denotes the fingerprint produced by SHA for the message x
.
PARTY ONE PARTY TWO r1:=random 64bit value r2:=random 64bit value send SHA(r1) ----> <---- send SHA(r2) s2:=receive SHA(r2)<-- --> s2:=receive SHA(r1) send r1 ----> <---- send r2 r2:=receive r2 <-- --> r1:=receive r1 verify s2=SHA(r2) verify s1=SHA(r1) for both: DICE := (first_byte(r1) + first_byte(r2)) mod 36
After they have sent the fingerprint, no player can change his secret any longer, but the other cannot unveil it, too. So provided that SHA is safe, this protocol negotiates an equally distributed value between 0 and 35.
And if one or both parties want to betray, they will not be able to influence the result.
The random value is not completely random: The first byte should (but doesn't have to) be between 0 and 35 to have equal probabilities for all throws.
Adding a value to an equally distributed random-number generates an equally distributed random number (convolution)