The Password Authenticated Key Exchange by Juggling (or J-PAKE) is a password-authenticated key agreement protocol, proposed by Feng Hao and Peter Ryan.[1] This protocol allows two parties to establish private and authenticated communication solely based on their shared (low-entropy) password without requiring a Public Key Infrastructure. It provides mutual authentication to the key exchange, a feature that is lacking in the Diffie–Hellman key exchange protocol.
Two parties, Alice and Bob, agree on a group [math]\displaystyle{ G }[/math] with generator [math]\displaystyle{ g }[/math] of prime order [math]\displaystyle{ q }[/math] in which the discrete log problem is hard. Typically a Schnorr group is used. In general, J-PAKE can use any prime order group that is suitable for public key cryptography, including Elliptic curve cryptography. Let [math]\displaystyle{ s }[/math] be their shared (low-entropy) secret, which can be a password or a hash of a password ([math]\displaystyle{ s \neq 0 }[/math]). The protocol executes in two rounds.
After Round 2, Alice computes [math]\displaystyle{ K = (B/g^{x_2 x_4 s})^{x_2} = g^{(x_1 + x_3) x_2 x_4 s} }[/math]. Similarly, Bob computes [math]\displaystyle{ K = (A/g^{x_2 x_4 s})^ {x_4} = g^{(x_1 + x_3) x_2 x_4 s} }[/math]. With the same keying material [math]\displaystyle{ K }[/math], Alice and Bob can derive a session key using a Cryptographic hash function: [math]\displaystyle{ \kappa = H(K) }[/math].
The two-round J-PAKE protocol is completely symmetric. This helps significantly simplify the security analysis. For example, the proof that one party does not leak any password information in the data exchange must hold true for the other party based on the symmetry. This reduces the number of the needed security proofs by half.
In practice, it is more likely to implement J-PAKE in three flows since one party shall normally take the initiative. This can be done trivially without loss of security. Suppose Alice initiates the communication by sending to Bob: [math]\displaystyle{ g^{x_1}, g^{x_2} }[/math] and Zero-knowledge proofs. Then Bob replies with: [math]\displaystyle{ g^{x_3}, g^{x_4}, B = g^{(x_1 + x_2 + x_3) x_4 s} }[/math] and Zero-knowledge proofs. Finally, Alice sends to Bob: [math]\displaystyle{ A = g^{(x_1 + x_3 + x_4) x_2 s} }[/math] and a Zero-knowledge proof. Both parties can now derive the same session key.
Depending on the application requirement, Alice and Bob may perform an optional key confirmation step. There are several ways to do it. A simple method described in SPEKE works as follows: Alice sends to Bob [math]\displaystyle{ H(H(\kappa)) }[/math], and then Bob replies with [math]\displaystyle{ H(\kappa) }[/math].[2] Alternatively, Alice and Bob can realize explicit key confirmation by using the newly constructed session key to encrypt a known value (or a random challenge). EKE, Kerberos and Needham-Schroeder all attempt to provide explicit key confirmation by exactly this method.
Given that the underlying Schnorr non-interactive zero-knowledge proof is secure, the J-PAKE protocol is proved to satisfy the following properties:[3]
In 2015, Abdalla, Benhamouda and MacKenzie conducted an independent formal analysis of J-PAKE to prove its security in a random oracle model assuming algebraic adversaries.[4]
The J-PAKE protocol is designed by combining random public keys in such a structured way to achieve a vanishing effect if both parties supplied exactly the same passwords. This is somehow similar to the Anonymous veto network protocol design. The essence of the idea, however, can be traced back to David Chaum's original Dining Cryptographers network protocol,[5] where binary bits are combined in a structured way to achieve a vanishing effect.
J-PAKE has been implemented in OpenSSL and OpenSSH as an experimental authentication protocol. It was removed from the OpenSSH source code at the end of January 2014.[6] It has also been implemented in Smoke Crypto Chat Messenger,[7] in NSS and was used by Firefox Sync version 1.1 but discontinued in 1.5 which uses a different key exchange and storage method.[8] Mozilla's J-PAKE server was shut down along with the Sync 1.1 storage servers on 30 September 2015.[9] Pale Moon continues to use J-PAKE as part of its Sync service.[10] Since February 2013, J-PAKE has been added to the lightweight API in Bouncycastle (1.48 and onwards). J-PAKE is also used in the Thread (network protocol)[11]
J-PAKE was included in ISO/IEC 11770-4 (2017) as an international standard.[12] It is also published in RFC 8236.
Original source: https://en.wikipedia.org/wiki/Password Authenticated Key Exchange by Juggling.
Read more |