Bouncy Castle Cryptography 1.23

org.bouncycastle.bcpg
Class DSAPublicBCPGKey

java.lang.Object
  |
  +--org.bouncycastle.bcpg.BCPGObject
        |
        +--org.bouncycastle.bcpg.DSAPublicBCPGKey
All Implemented Interfaces:
BCPGKey

public class DSAPublicBCPGKey
extends BCPGObject
implements BCPGKey

base class for an DSA Public Key.


Constructor Summary
DSAPublicBCPGKey(BCPGInputStream in)
           
DSAPublicBCPGKey(java.math.BigInteger p, java.math.BigInteger q, 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 getQ()
           
 java.math.BigInteger getY()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DSAPublicBCPGKey

public DSAPublicBCPGKey(BCPGInputStream in)
                 throws java.io.IOException
Parameters:
n - the modulus
e - the public exponent

DSAPublicBCPGKey

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

getFormat

public java.lang.String getFormat()
return "PGP"
Specified by:
getFormat in interface BCPGKey
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()

encode

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

getG

public java.math.BigInteger getG()
Returns:
g

getP

public java.math.BigInteger getP()
Returns:
p

getQ

public java.math.BigInteger getQ()
Returns:
q

getY

public java.math.BigInteger getY()
Returns:
g

Bouncy Castle Cryptography 1.23