18 lines
421 B
Java
18 lines
421 B
Java
|
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;
|
||
|
}
|
||
|
}
|