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

package org.bouncycastle.jce.spec;

import java.math.BigInteger;
import java.security.spec.AlgorithmParameterSpec;

public class ElGamalParameterSpec implements AlgorithmParameterSpec
{
    private BigInteger p;
    private BigInteger g;
    
    public ElGamalParameterSpec(final BigInteger p2, final BigInteger g) {
        this.p = p2;
        this.g = g;
    }
    
    public BigInteger getP() {
        return this.p;
    }
    
    public BigInteger getG() {
        return this.g;
    }
}
