FileDocCategorySizeDatePackage
ElGamalPrivateKeySpec.javaAPI DocAzureus 3.0.3.4620Tue Jun 08 05:12:56 BST 2004org.bouncycastle.jce.spec

ElGamalPrivateKeySpec

public class ElGamalPrivateKeySpec extends ElGamalKeySpec
This class specifies an ElGamal private key with its associated parameters.
see
ElGamalPublicKeySpec

Fields Summary
private BigInteger
x
Constructors Summary
public ElGamalPrivateKeySpec(BigInteger x, ElGamalParameterSpec spec)

        super(spec);

        this.x = x;
    
Methods Summary
public java.math.BigIntegergetX()
Returns the private value x.

return
the private value x

        return x;