Package org.bouncycastle.bcpg
Class ElGamalPublicBCPGKey
- java.lang.Object
-
- org.bouncycastle.bcpg.BCPGObject
-
- org.bouncycastle.bcpg.ElGamalPublicBCPGKey
-
- All Implemented Interfaces:
BCPGKey
,org.bouncycastle.util.Encodable
public class ElGamalPublicBCPGKey extends BCPGObject implements BCPGKey
base class for an ElGamal Public Key.
-
-
Constructor Summary
Constructors Constructor Description ElGamalPublicBCPGKey(java.math.BigInteger p, java.math.BigInteger g, java.math.BigInteger y)
ElGamalPublicBCPGKey(BCPGInputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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()
-
-
-
Constructor Detail
-
ElGamalPublicBCPGKey
public ElGamalPublicBCPGKey(BCPGInputStream in) throws java.io.IOException
- 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 interfaceBCPGKey
- Returns:
- "RAW" or "PGP"
- See Also:
BCPGKey.getFormat()
-
getEncoded
public byte[] getEncoded()
return the standard PGP encoding of the key.- Specified by:
getEncoded
in interfaceBCPGKey
- Specified by:
getEncoded
in interfaceorg.bouncycastle.util.Encodable
- Overrides:
getEncoded
in classBCPGObject
- Returns:
- byte[]
- 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 classBCPGObject
- Throws:
java.io.IOException
-
-