Bouncy Castle Cryptography 1.33

org.bouncycastle.bcpg
Class ElGamalPublicBCPGKey

java.lang.Object
  extended byorg.bouncycastle.bcpg.BCPGObject
      extended byorg.bouncycastle.bcpg.ElGamalPublicBCPGKey
All Implemented Interfaces:
BCPGKey

public class ElGamalPublicBCPGKey
extends BCPGObject
implements BCPGKey

base class for an ElGamal Public Key.


Constructor Summary
ElGamalPublicBCPGKey(BCPGInputStream in)
           
ElGamalPublicBCPGKey(java.math.BigInteger p, java.math.BigInteger g, java.math.BigInteger y)
           
 
Method Summary
 void encode(BCPGOutputStream out)
           
 byte[] getEncoded()
          return the standard PGP encoding of the key.
 java.lang.String getFormat()
          return "PGP"
 java.math.BigInteger getG()
           
 java.math.BigInteger getP()
           
 java.math.BigInteger getY()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ElGamalPublicBCPGKey

public ElGamalPublicBCPGKey(BCPGInputStream in)
                     throws java.io.IOException

ElGamalPublicBCPGKey

public ElGamalPublicBCPGKey(java.math.BigInteger p,
                            java.math.BigInteger g,
                            java.math.BigInteger y)
Method Detail

getFormat

public java.lang.String getFormat()
return "PGP"

Specified by:
getFormat in interface BCPGKey
Returns:
"RAW" or "PGP"
See Also:
BCPGKey.getFormat()

getEncoded

public byte[] getEncoded()
return the standard PGP encoding of the key.

Specified by:
getEncoded in interface BCPGKey
Overrides:
getEncoded in class BCPGObject
See Also:
BCPGKey.getEncoded()

getP

public java.math.BigInteger getP()

getG

public java.math.BigInteger getG()

getY

public java.math.BigInteger getY()

encode

public void encode(BCPGOutputStream out)
            throws java.io.IOException
Specified by:
encode in class BCPGObject
Throws:
java.io.IOException

Bouncy Castle Cryptography 1.33