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 CipherOutputStreamFipsOutputAEADDecryptor.getDecryptingStream(OutputStream out) abstract CipherOutputStreamFipsOutputDecryptor.getDecryptingStream(OutputStream out) abstract CipherOutputStreamFipsOutputAEADEncryptor.getEncryptingStream(OutputStream out) abstract CipherOutputStreamFipsOutputEncryptor.getEncryptingStream(OutputStream out) -
Uses of CipherOutputStream in org.bouncycastle.crypto.internal.io
Subclasses of CipherOutputStream in org.bouncycastle.crypto.internal.ioModifier and TypeClassDescriptionclassA 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.Methods in org.bouncycastle.crypto.internal.io that return CipherOutputStreamModifier and TypeMethodDescriptionstatic CipherOutputStreamCipherOutputStreamImpl.getInstance(OutputStream out, BufferedBlockCipher cipher) static CipherOutputStreamCipherOutputStreamImpl.getInstance(OutputStream out, AEADCipher cipher) static CipherOutputStreamCipherOutputStreamImpl.getInstance(OutputStream out, StreamCipher cipher)