Class DefaultPGPSecretKeyAccessor
java.lang.Object
org.apache.camel.converter.crypto.DefaultPGPSecretKeyAccessor
- All Implemented Interfaces:
PGPSecretKeyAccessor
Caches a Secret Keyring. Assumes that the password for all private keys is the same.
-
Constructor Summary
ConstructorsConstructorDescriptionDefaultPGPSecretKeyAccessor(byte[] secretKeyRing, String password, String provider) -
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.
-
Constructor Details
-
DefaultPGPSecretKeyAccessor
public DefaultPGPSecretKeyAccessor(byte[] secretKeyRing, String password, String provider) throws org.bouncycastle.openpgp.PGPException, IOException - Parameters:
secretKeyRing- secret key ring as byte arraypassword- password for the private keys, assuming that all private keys have the same passwordprovider-- Throws:
org.bouncycastle.openpgp.PGPExceptionIOException
-
-
Method Details
-
getSignerKeys
public List<PGPSecretKeyAndPrivateKeyAndUserId> getSignerKeys(org.apache.camel.Exchange exchange, List<String> useridParts) throws Exception Description copied from interface:PGPSecretKeyAccessorReturns the signer keys for the given user ID parts. This method is used for signing.- Specified by:
getSignerKeysin interfacePGPSecretKeyAccessor- 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
public org.bouncycastle.openpgp.PGPPrivateKey getPrivateKey(org.apache.camel.Exchange exchange, long keyId) throws Exception Description copied from interface:PGPSecretKeyAccessorReturns the private key with a certain key ID. This method is used for decrypting.- Specified by:
getPrivateKeyin interfacePGPSecretKeyAccessor- Parameters:
exchange- exchange, can benullkeyId- key ID- Returns:
- private key or
nullif the key cannot be found - Throws:
Exception
-