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