Uses of Class
org.bouncycastle.crypto.CipherOutputStream
Packages that use CipherOutputStream
Package
Description
Lower level cryptography API that supports the JCA/JCE provider as well as allowing access to more primitive functionality.
Classes for FIPS approved mode algorithms
-
Uses of CipherOutputStream in org.bouncycastle.crypto
Methods in org.bouncycastle.crypto that return CipherOutputStreamModifier and TypeMethodDescriptionOutputDecryptor.getDecryptingStream
(OutputStream out) Return a stream which will decrypt it's input writing the results to out.OutputEncryptor.getEncryptingStream
(OutputStream out) Return a stream which will encrypt it's input writing the results to out. -
Uses of CipherOutputStream in org.bouncycastle.crypto.fips
Methods in org.bouncycastle.crypto.fips that return CipherOutputStreamModifier and TypeMethodDescriptionabstract CipherOutputStream
FipsOutputAEADDecryptor.getDecryptingStream
(OutputStream out) abstract CipherOutputStream
FipsOutputDecryptor.getDecryptingStream
(OutputStream out) abstract CipherOutputStream
FipsOutputAEADEncryptor.getEncryptingStream
(OutputStream out) abstract CipherOutputStream
FipsOutputEncryptor.getEncryptingStream
(OutputStream out) -
Uses of CipherOutputStream in org.bouncycastle.crypto.internal.io
Subclasses of CipherOutputStream in org.bouncycastle.crypto.internal.ioModifier and TypeClassDescriptionclass
A CipherOutputStream is composed of an OutputStream and a cipher so that write() methods process the written data with the cipher, and the output of the cipher is in turn written to the underlying OutputStream.