org.bouncycastle.openpgp
Class PGPSecretKeyRing
java.lang.Object
|
+--org.bouncycastle.openpgp.PGPSecretKeyRing
- public class PGPSecretKeyRing
- extends java.lang.Object
Holder for a collection of PGP secret keys.
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
PGPSecretKeyRing
public PGPSecretKeyRing(byte[] encoding)
throws java.io.IOException,
PGPException
PGPSecretKeyRing
public PGPSecretKeyRing(java.io.InputStream in)
throws java.io.IOException,
PGPException
getPublicKey
public PGPPublicKey getPublicKey()
- Return the public key for the master key.
- Returns:
- PGPPublicKey
getSecretKey
public PGPSecretKey getSecretKey()
- Return the master private key.
- Returns:
- PGPSecretKey
getSecretKeys
public java.util.Iterator getSecretKeys()
- Return an iterator containing all the secret keys.
- Returns:
- Iterator
getSecretKey
public PGPSecretKey getSecretKey(long keyId)
getEncoded
public byte[] getEncoded()
throws java.io.IOException
encode
public void encode(java.io.OutputStream outStream)
throws java.io.IOException
insertSecretKey
public static PGPSecretKeyRing insertSecretKey(PGPSecretKeyRing secRing,
PGPSecretKey secKey)
- Returns a new key ring with the secret key passed in either added or
replacing an existing one with the same key ID.
- Parameters:
secRing
- the secret key ring to be modified.secKey
- the secret key to be added.- Returns:
- a new secret key ring.
removeSecretKey
public static PGPSecretKeyRing removeSecretKey(PGPSecretKeyRing secRing,
PGPSecretKey secKey)
- Returns a new key ring with the secret key passed in removed from the
key ring.
- Parameters:
secRing
- the secret key ring to be modified.secKey
- the secret key to be removed.- Returns:
- a new secret key ring, or null if secKey is not found.