Interface PGPSecretKeyAccessor
- All Known Implementing Classes:
DefaultPGPSecretKeyAccessor,PGPDataFormat
public interface PGPSecretKeyAccessor
-
Method Summary
Modifier and TypeMethodDescriptionorg.bouncycastle.openpgp.PGPPrivateKeygetPrivateKey(org.apache.camel.Exchange exchange, long keyId) Returns the private key with a certain key ID.getSignerKeys(org.apache.camel.Exchange exchange, List<String> useridParts) Returns the signer keys for the given user ID parts.
-
Method Details
-
getSignerKeys
List<PGPSecretKeyAndPrivateKeyAndUserId> getSignerKeys(org.apache.camel.Exchange exchange, List<String> useridParts) throws Exception Returns the signer keys for the given user ID parts. This method is used for signing.- Parameters:
exchange- exchange, can benulluseridParts- parts of User IDs, can benullor empty, then an empty list must be returned- Returns:
- list of secret keys with their private keys and User Ids which corresponds to one of the
useridParts, must not be
null, can be empty - Throws:
Exception
-
getPrivateKey
org.bouncycastle.openpgp.PGPPrivateKey getPrivateKey(org.apache.camel.Exchange exchange, long keyId) throws Exception Returns the private key with a certain key ID. This method is used for decrypting.- Parameters:
exchange- exchange, can benullkeyId- key ID- Returns:
- private key or
nullif the key cannot be found - Throws:
Exception
-