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.


Method Summary
 String decrypt(String algorithm, String cipherText)
           
 byte[] decryptBytes(String algorithm, byte[] cipherText)
           
 String encrypt(String algorithm, String clearText)
           
 byte[] encryptBytes(String algorithm, byte[] clearText)
           
 
Methods inherited from interface com.ca.jcs.Activatable
activate, deactivate
 

Method Detail

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