Package org.apache.synapse.securevault
Class AsymmetricCipher
- java.lang.Object
-
- org.apache.synapse.securevault.BaseCipher
-
- org.apache.synapse.securevault.AsymmetricCipher
-
- All Implemented Interfaces:
DecryptionProvider,EncryptionProvider
public class AsymmetricCipher extends BaseCipher
The Cipher doing asymmetric cryptographic operations
-
-
Field Summary
-
Fields inherited from class org.apache.synapse.securevault.BaseCipher
keyStoreWrapper
-
-
Constructor Summary
Constructors Constructor Description AsymmetricCipher(CipherInformation cipherInformation, Key key)AsymmetricCipher(CipherInformation cipherInformation, KeyStoreInformation keystoreInformation)AsymmetricCipher(CipherInformation cipherInformation, KeyStoreWrapper keyStoreWrapper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KeygetKey(CipherOperationMode operationMode)Returns the correct key for correct operation-
Methods inherited from class org.apache.synapse.securevault.BaseCipher
decrypt, encrypt, getCipherInformation, getKeyStoreInformation
-
-
-
-
Constructor Detail
-
AsymmetricCipher
public AsymmetricCipher(CipherInformation cipherInformation, KeyStoreInformation keystoreInformation)
-
AsymmetricCipher
public AsymmetricCipher(CipherInformation cipherInformation, KeyStoreWrapper keyStoreWrapper)
-
AsymmetricCipher
public AsymmetricCipher(CipherInformation cipherInformation, Key key)
-
-
Method Detail
-
getKey
public Key getKey(CipherOperationMode operationMode)
Description copied from class:BaseCipherReturns the correct key for correct operation- Specified by:
getKeyin classBaseCipher- Parameters:
operationMode- Ciper operation- Returns:
- A key
-
-