18 lines
416 B
Java
18 lines
416 B
Java
|
package org.bouncycastle.crypto.params;
|
||
|
|
||
|
import java.math.BigInteger;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class DSAPublicKeyParameters extends DSAKeyParameters {
|
||
|
private BigInteger y;
|
||
|
|
||
|
public BigInteger getY() {
|
||
|
return this.y;
|
||
|
}
|
||
|
|
||
|
public DSAPublicKeyParameters(BigInteger bigInteger, DSAParameters dSAParameters) {
|
||
|
super(false, dSAParameters);
|
||
|
this.y = bigInteger;
|
||
|
}
|
||
|
}
|