T - the parameters type associated with the final implementation of this decryptor.public abstract class FipsOutputDecryptor<T extends Parameters> extends java.lang.Object implements OutputDecryptor<T>
| Modifier and Type | Method and Description |
|---|---|
abstract CipherOutputStream |
getDecryptingStream(java.io.OutputStream out)
Return a stream which will decrypt it's input writing the results to out.
|
abstract T |
getParameters()
Return the parameters for this cipher.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetMaxOutputSize, getUpdateOutputSizepublic abstract T getParameters()
OutputCiphergetParameters in interface OutputCipher<T extends Parameters>public abstract CipherOutputStream getDecryptingStream(java.io.OutputStream out)
OutputDecryptorgetDecryptingStream in interface OutputDecryptor<T extends Parameters>out - the output stream to collect the decrypted data in.