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

18 lines
421 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.jce.spec;
import java.math.BigInteger;
/* loaded from: classes6.dex */
public class ElGamalPrivateKeySpec extends ElGamalKeySpec {
private BigInteger x;
public BigInteger getX() {
return this.x;
}
public ElGamalPrivateKeySpec(BigInteger bigInteger, ElGamalParameterSpec elGamalParameterSpec) {
super(elGamalParameterSpec);
this.x = bigInteger;
}
}