FileDocCategorySizeDatePackage
ElGamalPrivateKey.javaAPI DocExample370Tue Feb 24 10:52:34 GMT 1998oreilly.jonathan.crypto

ElGamalPrivateKey

public class ElGamalPrivateKey extends ElGamalKey implements PrivateKey

Fields Summary
private BigInteger
mX
Constructors Summary
protected ElGamalPrivateKey(BigInteger x, BigInteger g, BigInteger p)

    super(g, p);
    mX = x;
  
Methods Summary
protected java.math.BigIntegergetX()

 return mX;