public class RSAPublicBCPGKey extends BCPGObject implements BCPGKey
| Constructor and Description |
|---|
RSAPublicBCPGKey(BCPGInputStream in)
Construct an RSA public key from the passed in stream.
|
RSAPublicBCPGKey(java.math.BigInteger n,
java.math.BigInteger e) |
| Modifier and Type | Method and Description |
|---|---|
void |
encode(BCPGOutputStream out) |
byte[] |
getEncoded()
return the standard PGP encoding of the key.
|
java.lang.String |
getFormat()
return "PGP"
|
java.math.BigInteger |
getModulus() |
java.math.BigInteger |
getPublicExponent() |
public RSAPublicBCPGKey(BCPGInputStream in) throws java.io.IOException
in - java.io.IOExceptionpublic RSAPublicBCPGKey(java.math.BigInteger n,
java.math.BigInteger e)
n - the moduluse - the public exponentpublic java.math.BigInteger getPublicExponent()
public java.math.BigInteger getModulus()
public java.lang.String getFormat()
getFormat in interface BCPGKeyBCPGKey.getFormat()public byte[] getEncoded()
getEncoded in interface BCPGKeygetEncoded in interface org.bouncycastle.util.EncodablegetEncoded in class BCPGObjectBCPGKey.getEncoded()public void encode(BCPGOutputStream out) throws java.io.IOException
encode in class BCPGObjectjava.io.IOException