what-the-bank/sources/org/bouncycastle/jce/spec/ElGamalParameterSpec.java

24 lines
541 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
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;
}
}