FileDocCategorySizeDatePackage
DSAPrivateKeyParameters.javaAPI DocAzureus 3.0.3.4393Tue Jun 08 05:13:00 BST 2004org.bouncycastle.crypto.params

DSAPrivateKeyParameters

public class DSAPrivateKeyParameters extends DSAKeyParameters

Fields Summary
private BigInteger
x
Constructors Summary
public DSAPrivateKeyParameters(BigInteger x, DSAParameters params)

        super(true, params);

        this.x = x;
    
Methods Summary
public java.math.BigIntegergetX()

        return x;