mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-04 03:05:38 +00:00
23 lines
381 B
Java
23 lines
381 B
Java
![]() |
package org.bouncycastle.crypto.params;
|
||
|
|
||
|
import java.math.BigInteger;
|
||
|
|
||
|
public class ECPrivateKeyParameters
|
||
|
extends ECKeyParameters
|
||
|
{
|
||
|
BigInteger d;
|
||
|
|
||
|
public ECPrivateKeyParameters(
|
||
|
BigInteger d,
|
||
|
ECDomainParameters params)
|
||
|
{
|
||
|
super(true, params);
|
||
|
this.d = d;
|
||
|
}
|
||
|
|
||
|
public BigInteger getD()
|
||
|
{
|
||
|
return d;
|
||
|
}
|
||
|
}
|