ECPrivateKeyParameters.java revision e6bf3e8dfa2804891a82075cb469b736321b4827
1package org.bouncycastle.crypto.params;
2
3import java.math.BigInteger;
4
5public class ECPrivateKeyParameters
6    extends ECKeyParameters
7{
8    BigInteger d;
9
10    public ECPrivateKeyParameters(
11        BigInteger          d,
12        ECDomainParameters  params)
13    {
14        super(true, params);
15        this.d = d;
16    }
17
18    public BigInteger getD()
19    {
20        return d;
21    }
22}
23