-
- 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 interfaceDecryptor
can 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 R
decrypt(T encrypted)
Decrypt the given encrypted object.
-