Class ECJPAKEUtil
java.lang.Object
org.bouncycastle.crypto.agreement.ecjpake.ECJPAKEUtil
Primitives needed for a EC J-PAKE exchange.
The recommended way to perform an EC J-PAKE exchange is by using
two ECJPAKEParticipant
s. Internally, those participants
call these primitive operations in ECJPAKEUtil
.
The primitives, however, can be used without a ECJPAKEParticipant
if needed.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ECPoint
calculateA
(ECPoint gA, BigInteger x2s) Calculate A as done in round 2.static ECPoint
calculateGA
(ECPoint gx1, ECPoint gx3, ECPoint gx4) Calculate ga as done in round 2.static ECPoint
calculateGx
(ECPoint g, BigInteger x) Calculate g^x as done in round 1.static BigInteger
calculateKeyingMaterial
(BigInteger n, ECPoint gx4, BigInteger x2, BigInteger s, ECPoint B) Calculates the keying material, which can be done after round 2 has completed.static BigInteger
calculateMacTag
(String participantId, String partnerParticipantId, ECPoint gx1, ECPoint gx2, ECPoint gx3, ECPoint gx4, BigInteger keyingMaterial, Digest digest) Calculates the MacTag (to be used for key confirmation), as defined by NIST SP 800-56A Revision 3, Section 5.9.1 Unilateral Key Confirmation for Key Agreement Schemes.static BigInteger
calculateS
(BigInteger n, byte[] password) Converts the given password to aBigInteger
mod n.static BigInteger
calculateS
(BigInteger n, char[] password) Converts the given password to aBigInteger
mod n.static BigInteger
calculateX2s
(BigInteger n, BigInteger x2, BigInteger s) Calculate x2 * s as done in round 2.static ECSchnorrZKP
calculateZeroKnowledgeProof
(ECPoint generator, BigInteger n, BigInteger x, ECPoint X, Digest digest, String userID, SecureRandom random) Calculate a zero knowledge proof of x using Schnorr's signature.static BigInteger
generateX1
(BigInteger n, SecureRandom random) Return a value that can be used as x1, x2, x3 or x4 during round 1.static void
validateMacTag
(String participantId, String partnerParticipantId, ECPoint gx1, ECPoint gx2, ECPoint gx3, ECPoint gx4, BigInteger keyingMaterial, Digest digest, BigInteger partnerMacTag) Validates the MacTag received from the partner participant.static void
validateNotNull
(Object object, String description) Validates that the given object is not null.static void
validateParticipantIdsDiffer
(String participantId1, String participantId2) Validates that the given participant ids are not equal.static void
validateParticipantIdsEqual
(String expectedParticipantId, String actualParticipantId) Validates that the given participant ids are equal.static void
validateZeroKnowledgeProof
(ECPoint generator, ECPoint X, ECSchnorrZKP zkp, BigInteger q, BigInteger n, ECCurve curve, BigInteger coFactor, String userID, Digest digest) Validates the zero knowledge proof (generated bycalculateZeroKnowledgeProof(ECPoint, BigInteger, BigInteger, ECPoint, Digest, String, SecureRandom)
) is correct.
-
Constructor Details
-
ECJPAKEUtil
public ECJPAKEUtil()
-
-
Method Details
-
generateX1
Return a value that can be used as x1, x2, x3 or x4 during round 1.The returned value is a random value in the range [1, n-1].
-
calculateS
Converts the given password to aBigInteger
mod n.- Throws:
CryptoException
-
calculateS
Converts the given password to aBigInteger
mod n.- Throws:
CryptoException
-
calculateGx
Calculate g^x as done in round 1. -
calculateGA
Calculate ga as done in round 2. -
calculateX2s
Calculate x2 * s as done in round 2. -
calculateA
Calculate A as done in round 2. -
calculateZeroKnowledgeProof
public static ECSchnorrZKP calculateZeroKnowledgeProof(ECPoint generator, BigInteger n, BigInteger x, ECPoint X, Digest digest, String userID, SecureRandom random) Calculate a zero knowledge proof of x using Schnorr's signature. The returned object has two fields {g^v, r = v-x*h} for x. -
validateZeroKnowledgeProof
public static void validateZeroKnowledgeProof(ECPoint generator, ECPoint X, ECSchnorrZKP zkp, BigInteger q, BigInteger n, ECCurve curve, BigInteger coFactor, String userID, Digest digest) throws CryptoException Validates the zero knowledge proof (generated bycalculateZeroKnowledgeProof(ECPoint, BigInteger, BigInteger, ECPoint, Digest, String, SecureRandom)
) is correct.- Throws:
CryptoException
- if the zero knowledge proof is not correct
-
validateParticipantIdsDiffer
public static void validateParticipantIdsDiffer(String participantId1, String participantId2) throws CryptoException Validates that the given participant ids are not equal. (For the J-PAKE exchange, each participant must use a unique id.)- Throws:
CryptoException
- if the participantId strings are equal.
-
validateParticipantIdsEqual
public static void validateParticipantIdsEqual(String expectedParticipantId, String actualParticipantId) throws CryptoException Validates that the given participant ids are equal. This is used to ensure that the payloads received from each round all come from the same participant.- Throws:
CryptoException
- if the participantId strings are equal.
-
validateNotNull
Validates that the given object is not null.- Parameters:
object
- object in questiondescription
- name of the object (to be used in exception message)- Throws:
NullPointerException
- if the object is null.
-
calculateKeyingMaterial
public static BigInteger calculateKeyingMaterial(BigInteger n, ECPoint gx4, BigInteger x2, BigInteger s, ECPoint B) Calculates the keying material, which can be done after round 2 has completed. A session key must be derived from this key material using a secure key derivation function (KDF). The KDF used to derive the key is handled externally (i.e. not byECJPAKEParticipant
).KeyingMaterial = (B/g^{x2*x4*s})^x2
-
calculateMacTag
public static BigInteger calculateMacTag(String participantId, String partnerParticipantId, ECPoint gx1, ECPoint gx2, ECPoint gx3, ECPoint gx4, BigInteger keyingMaterial, Digest digest) Calculates the MacTag (to be used for key confirmation), as defined by NIST SP 800-56A Revision 3, Section 5.9.1 Unilateral Key Confirmation for Key Agreement Schemes.MacTag = HMAC(MacKey, MacLen, MacData) MacKey = H(K || "ECJPAKE_KC") MacData = "KC_1_U" || participantId || partnerParticipantId || gx1 || gx2 || gx3 || gx4 Note that both participants use "KC_1_U" because the sender of the round 3 message is always the initiator for key confirmation. HMAC =
HMac
used with the givenDigest
H = The givenDigest
MacOutputBits = MacTagBits, hence truncation function omitted. MacLen = length of MacTag -
validateMacTag
public static void validateMacTag(String participantId, String partnerParticipantId, ECPoint gx1, ECPoint gx2, ECPoint gx3, ECPoint gx4, BigInteger keyingMaterial, Digest digest, BigInteger partnerMacTag) throws CryptoException Validates the MacTag received from the partner participant.- Parameters:
partnerMacTag
- the MacTag received from the partner.- Throws:
CryptoException
- if the participantId strings are equal.
-