CipherService.decrypt

Decrypts encrypted data via the specified cipher key and returns the original (pre-encrypted) data. Note that the key must be in a format understood by the CipherService implementation.

@param encrypted the previously encrypted data to decrypt @param decryptionKey the cipher key used during decryption. @return a byte source representing the original form of the specified encrypted data. @throws CryptoException if there is an error during decryption

interface CipherService
decrypt
(
byte[] encrypted
,)

Meta