In cryptography, the socialist millionaire problem is one in which two millionaires want to determine if their wealth is equal without disclosing any information about their riches to each other. It is a variant of the Millionaire's Problem whereby two millionaires wish to compare their riches to determine who has the most wealth without disclosing any information about their riches to each other. It is often used as a cryptographic protocol that allows two parties to verify the identity of the remote party through the use of a shared secret, avoiding a man-in-the-middle attack without the inconvenience of manually comparing public key fingerprints through an outside channel. In effect, a relatively weak password/passphrase in natural language can be used.
Motivation Alice and Bob have secret values x {\displaystyle x} and y {\displaystyle y} , respectively. Alice and Bob wish to learn if x = y {\displaystyle x=y} without allowing either party to learn anything else about the other's secret value. A passive attacker simply spying on the messages Alice and Bob exchange learns nothing about x {\displaystyle x} and y {\displaystyle y} , not even whether x = y {\displaystyle x=y} . Even if one of the parties is dishonest and deviates from the protocol, that person cannot learn anything more than if x = y {\displaystyle x=y} . An active attacker capable of arbitrarily interfering with Alice and Bob's communication (man-in-the-middle attack) cannot learn more than a passive attacker and cannot affect the outcome of the protocol other than to make it fail. Therefore, the protocol can be used to authenticate whether two parties have the same secret information. Popular instant message cryptography package Off-the-Record Messaging uses the Socialist Millionaire protocol for authentication, in which the secrets x {\displaystyle x} and y {\displaystyle y} contain information about both parties' long-term authentication public keys as well as information entered by the users themselves.
Off-the-Record Messaging protocol
The protocol is based on group theory. A group of prime order p {\displaystyle p} and a generator h {\displaystyle h} are agreed upon a priori, and in practice are generally fixed in a given implementation. For example, in the Off-the-Record Messaging protocol, p {\displaystyle p} is a specific fixed 1,536-bit prime. h {\displaystyle h} is then a generator of a prime-order subgroup of ( Z / p Z ) ∗ {\displaystyle (\mathbb {Z} /p\mathbb {Z} )^{*}} , and all operations are performed modulo p {\displaystyle p} , or in other words, in a subgroup of the multiplicative group, ( Z / p Z ) ∗ {\displaystyle (\mathbb {Z} /p\mathbb {Z} )^{*}} . By ⟨ h | a , b ⟩ {\displaystyle \langle h|a,\,b\rangle } , denote the secure multiparty computation, Diffie–Hellman–Merkle key exchange, which, for the integers, a {\displaystyle a} , b {\displaystyle b} , returns h a b {\displaystyle h^{ab}} to each party:
Alice calculates h a {\displaystyle h^{a}} and sends it to Bob, who then calculates ( h a ) b ≡ h a b {\displaystyle \left(h^{a}\right)^{b}\equiv h^{ab}} . Bob calculates h b {\displaystyle h^{b}} and sends it to Alice, who then calculates ( h b ) a ≡ h b a {\displaystyle \left(h^{b}\right)^{a}\equiv h^{ba}} .
… excerpt ends here. Continue reading the full article.

