what-the-bank/sources/org/bouncycastle/crypto/agreement/jpake/JPAKERound3Payload.java

23 lines
519 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.agreement.jpake;
import java.math.BigInteger;
/* loaded from: classes6.dex */
public class JPAKERound3Payload {
private final BigInteger macTag;
private final String participantId;
public String getParticipantId() {
return this.participantId;
}
public BigInteger getMacTag() {
return this.macTag;
}
public JPAKERound3Payload(String str, BigInteger bigInteger) {
this.participantId = str;
this.macTag = bigInteger;
}
}