24 lines
541 B
Java
24 lines
541 B
Java
package org.bouncycastle.jce.spec;
|
|
|
|
import java.math.BigInteger;
|
|
import java.security.spec.AlgorithmParameterSpec;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class ElGamalParameterSpec implements AlgorithmParameterSpec {
|
|
private BigInteger g;
|
|
private BigInteger p;
|
|
|
|
public BigInteger getP() {
|
|
return this.p;
|
|
}
|
|
|
|
public BigInteger getG() {
|
|
return this.g;
|
|
}
|
|
|
|
public ElGamalParameterSpec(BigInteger bigInteger, BigInteger bigInteger2) {
|
|
this.p = bigInteger;
|
|
this.g = bigInteger2;
|
|
}
|
|
}
|