// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.crypto.agreement.ecjpake;

import java.math.BigInteger;

public class ECJPAKERound3Payload
{
    private final String participantId;
    private final BigInteger macTag;
    
    public ECJPAKERound3Payload(final String participantId, final BigInteger macTag) {
        this.participantId = participantId;
        this.macTag = macTag;
    }
    
    public String getParticipantId() {
        return this.participantId;
    }
    
    public BigInteger getMacTag() {
        return this.macTag;
    }
}
