18 lines
419 B
Java
18 lines
419 B
Java
|
package org.bouncycastle.jce.spec;
|
||
|
|
||
|
import java.math.BigInteger;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class ElGamalPublicKeySpec extends ElGamalKeySpec {
|
||
|
private BigInteger y;
|
||
|
|
||
|
public BigInteger getY() {
|
||
|
return this.y;
|
||
|
}
|
||
|
|
||
|
public ElGamalPublicKeySpec(BigInteger bigInteger, ElGamalParameterSpec elGamalParameterSpec) {
|
||
|
super(elGamalParameterSpec);
|
||
|
this.y = bigInteger;
|
||
|
}
|
||
|
}
|