18 lines
421 B
Java
18 lines
421 B
Java
package org.bouncycastle.crypto.params;
|
|
|
|
import java.math.BigInteger;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class ECPrivateKeyParameters extends ECKeyParameters {
|
|
BigInteger d;
|
|
|
|
public BigInteger getD() {
|
|
return this.d;
|
|
}
|
|
|
|
public ECPrivateKeyParameters(BigInteger bigInteger, ECDomainParameters eCDomainParameters) {
|
|
super(true, eCDomainParameters);
|
|
this.d = bigInteger;
|
|
}
|
|
}
|