com.ca.jcs.crypto
Interface CryptoService
- All Superinterfaces:
- Activatable
- All Known Implementing Classes:
- LegacyCryptoService
public interface CryptoService
- extends Activatable
Provide FIPS 140 Compliant encryption/decryption support for values
which are persisted by the JCS itself, or which should passed to
connectors for storage in encrypted form.
encrypt
String encrypt(String algorithm,
String clearText)
decrypt
String decrypt(String algorithm,
String cipherText)
encryptBytes
byte[] encryptBytes(String algorithm,
byte[] clearText)
decryptBytes
byte[] decryptBytes(String algorithm,
byte[] cipherText)
Created 2011-07-14 13:27 EST