-
- Type Parameters:
T- the generic type of the input to decryptR- the generic type of the result
- All Known Subinterfaces:
ByteArrayDecryptor,FileDecryptor,GenericObjectDecryptor<R>,IntegerDecryptor,StringDecryptor
public interface Decryptor<T,R>The generic functional interfaceDecryptorcan decrypt an object of type <T> (that was previously encrypted) and return the decrypted result as object of type <R>.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rdecrypt(T encrypted)Decrypt the given encrypted object.
-