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

18 lines
419 B
Java
Raw 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 ElGamalPublicKeySpec extends ElGamalKeySpec {
private BigInteger y;
public BigInteger getY() {
return this.y;
}
public ElGamalPublicKeySpec(BigInteger bigInteger, ElGamalParameterSpec elGamalParameterSpec) {
super(elGamalParameterSpec);
this.y = bigInteger;
}
}