Uses of Class
org.c02e.jpgpj.Subkey
Packages that use Subkey
-
Uses of Subkey in org.c02e.jpgpj
Fields in org.c02e.jpgpj with type parameters of type SubkeyMethods in org.c02e.jpgpj that return SubkeyModifier and TypeMethodDescriptionSubkey.clone()
Subkey with the specified full ID, or null.protected Subkey
Decryptor.Verifier.findVerificationSubkey
(Long id) Finds verification subkey by ID in this Decryptor's ring, or null.Key.getDecryption()
Last subkey that can decrypt, or null.Key.getEncryption()
Last subkey that can encrypt, or null.Key.getMaster()
First subkey or null.Key.getSigning()
Last subkey that can sign, or null.Key.getVerification()
Last subkey that can verify, or null.protected Subkey
Ring.newSubkey()
protected Subkey
Ring.newSubkey
(org.bouncycastle.openpgp.PGPPublicKey k) protected Subkey
Ring.newSubkey
(org.bouncycastle.openpgp.PGPSecretKey k) Methods in org.c02e.jpgpj that return types with arguments of type SubkeyModifier and TypeMethodDescriptionAll subkeys for which the specified string is a case-insensitive substring of either: any subkey's full ID (eg "0x1234567890ABCDEF") any subkey's fingerprint (eg "1234567890ABCDEF1234567890ABCDEF12345678") any one of any subkey's user IDs (eg "Alice (work) <alice@example.com>")All subkeys for which the specified pattern matches any part of either: any subkey's full ID (eg "0x1234567890ABCDEF") any subkey's fingerprint (eg "1234567890ABCDEF1234567890ABCDEF12345678") any one of any subkey's user IDs (eg "Alice (work) <alice@example.com>")Key.getSubkeys()
All subkeys, or an empty list.Methods in org.c02e.jpgpj with parameters of type SubkeyModifier and TypeMethodDescriptionprotected org.bouncycastle.openpgp.operator.PublicKeyDataDecryptorFactory
Decryptor.buildPublicKeyDecryptor
(Subkey subkey) Builds a symmetric-encryption decryptor for the specified subkey.protected InputStream
Decrypts the encrypted data as the returned input stream.protected boolean
Decryptor.isUsableForDecryption
(Subkey subkey) protected boolean
Encryptor.isUsableForSigning
(Subkey subkey) Method parameters in org.c02e.jpgpj with type arguments of type SubkeyModifier and TypeMethodDescriptionprotected Key
protected void
Key.setSubkeys
(List<Subkey> x) All subkeys, or an empty list.Constructor parameters in org.c02e.jpgpj with type arguments of type Subkey -
Uses of Subkey in org.c02e.jpgpj.key
Method parameters in org.c02e.jpgpj.key with type arguments of type SubkeyModifier and TypeMethodDescriptionprotected void
KeyForDecryption.setSubkeys
(List<Subkey> x) protected void
KeyForEncryption.setSubkeys
(List<Subkey> x) protected void
KeyForSigning.setSubkeys
(List<Subkey> x) protected void
KeyForVerification.setSubkeys
(List<Subkey> x) Constructor parameters in org.c02e.jpgpj.key with type arguments of type SubkeyModifierConstructorDescriptionKeyForDecryption
(List<Subkey> subkeys) Constructs a new key with the specified subkeys.KeyForEncryption
(List<Subkey> subkeys) Constructs a new key with the specified subkeys.KeyForSigning
(List<Subkey> subkeys) Constructs a new key with the specified subkeys.KeyForVerification
(List<Subkey> subkeys) Constructs a new key with the specified subkeys.