Uses of Class
org.c02e.jpgpj.Subkey
-
Packages that use Subkey Package Description org.c02e.jpgpj org.c02e.jpgpj.key -
-
Uses of Subkey in org.c02e.jpgpj
Fields in org.c02e.jpgpj with type parameters of type Subkey Modifier and Type Field Description protected java.util.List<Subkey>Key. subkeysMethods in org.c02e.jpgpj that return Subkey Modifier and Type Method Description SubkeySubkey. clone()SubkeyKey. findById(java.lang.Long id)Subkey with the specified full ID, or null.protected SubkeyDecryptor.Verifier. findVerificationSubkey(java.lang.Long id)Finds verification subkey by ID in this Decryptor's ring, or null.SubkeyKey. getDecryption()Last subkey that can decrypt, or null.SubkeyKey. getEncryption()Last subkey that can encrypt, or null.SubkeyKey. getMaster()First subkey or null.SubkeyKey. getSigning()Last subkey that can sign, or null.SubkeyKey. 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 Subkey Modifier and Type Method Description java.util.List<Subkey>Key. findAll(java.lang.String id)All 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>")java.util.List<Subkey>Key. findAll(java.util.regex.Pattern id)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>")java.util.List<Subkey>Key. getSubkeys()All subkeys, or an empty list.Methods in org.c02e.jpgpj with parameters of type Subkey Modifier and Type Method Description protected org.bouncycastle.openpgp.operator.PublicKeyDataDecryptorFactoryDecryptor. buildPublicKeyDecryptor(Subkey subkey)Builds a symmetric-encryption decryptor for the specified subkey.protected java.io.InputStreamDecryptor. decrypt(org.bouncycastle.openpgp.PGPPublicKeyEncryptedData data, Subkey subkey)Decrypts 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 Subkey Modifier and Type Method Description protected KeyRing. newKey(java.util.ArrayList<Subkey> subkeys)protected voidKey. setSubkeys(java.util.List<Subkey> x)All subkeys, or an empty list.Constructor parameters in org.c02e.jpgpj with type arguments of type Subkey Constructor Description Key(java.util.List<Subkey> subkeys)Constructs a new key with the specified subkeys. -
Uses of Subkey in org.c02e.jpgpj.key
Method parameters in org.c02e.jpgpj.key with type arguments of type Subkey Modifier and Type Method Description protected voidKeyForDecryption. setSubkeys(java.util.List<Subkey> x)protected voidKeyForEncryption. setSubkeys(java.util.List<Subkey> x)protected voidKeyForSigning. setSubkeys(java.util.List<Subkey> x)protected voidKeyForVerification. setSubkeys(java.util.List<Subkey> x)Constructor parameters in org.c02e.jpgpj.key with type arguments of type Subkey Constructor Description KeyForDecryption(java.util.List<Subkey> subkeys)Constructs a new key with the specified subkeys.KeyForEncryption(java.util.List<Subkey> subkeys)Constructs a new key with the specified subkeys.KeyForSigning(java.util.List<Subkey> subkeys)Constructs a new key with the specified subkeys.KeyForVerification(java.util.List<Subkey> subkeys)Constructs a new key with the specified subkeys.
-