Uses of Class
org.bouncycastle.crypto.CipherOutputStream
-
Packages that use CipherOutputStream Package Description org.bouncycastle.crypto Lower level cryptography API that supports the JCA/JCE provider as well as allowing access to more primitive functionality.org.bouncycastle.crypto.fips Classes for FIPS approved mode algorithmsorg.bouncycastle.crypto.internal.io -
-
Uses of CipherOutputStream in org.bouncycastle.crypto
Methods in org.bouncycastle.crypto that return CipherOutputStream Modifier and Type Method Description CipherOutputStream
OutputDecryptor. getDecryptingStream(java.io.OutputStream out)
Return a stream which will decrypt it's input writing the results to out.CipherOutputStream
OutputEncryptor. getEncryptingStream(java.io.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 CipherOutputStream Modifier and Type Method Description abstract CipherOutputStream
FipsOutputAEADDecryptor. getDecryptingStream(java.io.OutputStream out)
abstract CipherOutputStream
FipsOutputDecryptor. getDecryptingStream(java.io.OutputStream out)
abstract CipherOutputStream
FipsOutputAEADEncryptor. getEncryptingStream(java.io.OutputStream out)
abstract CipherOutputStream
FipsOutputEncryptor. getEncryptingStream(java.io.OutputStream out)
-
Uses of CipherOutputStream in org.bouncycastle.crypto.internal.io
Subclasses of CipherOutputStream in org.bouncycastle.crypto.internal.io Modifier and Type Class Description class
CipherOutputStreamImpl
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.
-