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. subkeys
Methods in org.c02e.jpgpj that return Subkey Modifier and Type Method Description Subkey
Subkey. clone()
Subkey
Key. findById(java.lang.Long id)
Subkey with the specified full ID, or null.protected Subkey
Decryptor.Verifier. findVerificationSubkey(java.lang.Long id)
Finds verification subkey by ID in this Decryptor's ring, or null.Subkey
Key. getDecryption()
Last subkey that can decrypt, or null.Subkey
Key. getEncryption()
Last subkey that can encrypt, or null.Subkey
Key. getMaster()
First subkey or null.Subkey
Key. getSigning()
Last subkey that can sign, or null.Subkey
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 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.PublicKeyDataDecryptorFactory
Decryptor. buildPublicKeyDecryptor(Subkey subkey)
Builds a symmetric-encryption decryptor for the specified subkey.protected java.io.InputStream
Decryptor. decrypt(org.bouncycastle.openpgp.PGPPublicKeyEncryptedData data, Subkey subkey)
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 Subkey Modifier and Type Method Description protected Key
Ring. newKey(java.util.ArrayList<Subkey> subkeys)
protected void
Key. 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 void
KeyForDecryption. setSubkeys(java.util.List<Subkey> x)
protected void
KeyForEncryption. setSubkeys(java.util.List<Subkey> x)
protected void
KeyForSigning. setSubkeys(java.util.List<Subkey> x)
protected void
KeyForVerification. 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.
-