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

package org.bouncycastle.crypto.params;

import org.bouncycastle.math.ec.ECPoint;

public class ECCSIPublicKeyParameters extends AsymmetricKeyParameter
{
    private final ECPoint pvt;
    
    public ECCSIPublicKeyParameters(final ECPoint pvt) {
        super(false);
        this.pvt = pvt;
    }
    
    public final ECPoint getPVT() {
        return this.pvt;
    }
}
