Class JPAKERound3Payload
- java.lang.Object
-
- org.bouncycastle.crypto.agreement.jpake.JPAKERound3Payload
-
public class JPAKERound3Payload extends java.lang.Object
The payload sent/received during the optional third round of a J-PAKE exchange, which is for explicit key confirmation.Each
JPAKEParticipant
creates and sends an instance of this payload to the otherJPAKEParticipant
. The payload to send should be created viaJPAKEParticipant.createRound3PayloadToSend(BigInteger)
Each
JPAKEParticipant
must also validate the payload received from the otherJPAKEParticipant
. The received payload should be validated viaJPAKEParticipant.validateRound3PayloadReceived(JPAKERound3Payload, BigInteger)
-
-
Constructor Summary
Constructors Constructor Description JPAKERound3Payload(java.lang.String participantId, java.math.BigInteger magTag)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigInteger
getMacTag()
java.lang.String
getParticipantId()
-