Home | History | Annotate | Download | only in params
      1 package org.bouncycastle.crypto.params;
      2 
      3 import java.math.BigInteger;
      4 
      5 public 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