T
- the parameters type associated with the final implementation of this decryptor.public abstract class FipsInputDecryptor<T extends Parameters> extends java.lang.Object implements InputDecryptor<T>
Modifier and Type | Method and Description |
---|---|
abstract java.io.InputStream |
getDecryptingStream(java.io.InputStream in)
Return a stream which will decrypt what it reads from the stream in and pass it through.
|
abstract T |
getParameters()
Return the parameters for this decryptor.
|
public abstract T getParameters()
InputDecryptor
getParameters
in interface InputDecryptor<T extends Parameters>
public abstract java.io.InputStream getDecryptingStream(java.io.InputStream in)
InputDecryptor
getDecryptingStream
in interface InputDecryptor<T extends Parameters>
in
- the source of encrypted data..