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

package org.bouncycastle.crypto.agreement.ecjpake;

import java.math.BigInteger;
import org.bouncycastle.math.ec.ECPoint;

public class ECSchnorrZKP
{
    private final ECPoint V;
    private final BigInteger r;
    
    ECSchnorrZKP(final ECPoint v, final BigInteger r) {
        this.V = v;
        this.r = r;
    }
    
    public ECPoint getV() {
        return this.V;
    }
    
    public BigInteger getr() {
        return this.r;
    }
}
