18 lines
391 B
Java
18 lines
391 B
Java
|
package org.bouncycastle.jce.spec;
|
||
|
|
||
|
import java.math.BigInteger;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class ECPrivateKeySpec extends ECKeySpec {
|
||
|
private BigInteger d;
|
||
|
|
||
|
public BigInteger getD() {
|
||
|
return this.d;
|
||
|
}
|
||
|
|
||
|
public ECPrivateKeySpec(BigInteger bigInteger, ECParameterSpec eCParameterSpec) {
|
||
|
super(eCParameterSpec);
|
||
|
this.d = bigInteger;
|
||
|
}
|
||
|
}
|