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 SubkeyDecryptor.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 SubkeyRing.newSubkey()protected SubkeyRing.newSubkey(org.bouncycastle.openpgp.PGPPublicKey k) protected SubkeyRing.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.PublicKeyDataDecryptorFactoryDecryptor.buildPublicKeyDecryptor(Subkey subkey) Builds a symmetric-encryption decryptor for the specified subkey.protected InputStreamDecrypts the encrypted data as the returned input stream.protected booleanDecryptor.isUsableForDecryption(Subkey subkey) protected booleanEncryptor.isUsableForSigning(Subkey subkey) Method parameters in org.c02e.jpgpj with type arguments of type SubkeyModifier and TypeMethodDescriptionprotected Keyprotected voidKey.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 voidKeyForDecryption.setSubkeys(List<Subkey> x) protected voidKeyForEncryption.setSubkeys(List<Subkey> x) protected voidKeyForSigning.setSubkeys(List<Subkey> x) protected voidKeyForVerification.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.