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 CipherOutputStreamOutputDecryptor. getDecryptingStream(java.io.OutputStream out)Return a stream which will decrypt it's input writing the results to out.CipherOutputStreamOutputEncryptor. 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 CipherOutputStreamFipsOutputAEADDecryptor. getDecryptingStream(java.io.OutputStream out)abstract CipherOutputStreamFipsOutputDecryptor. getDecryptingStream(java.io.OutputStream out)abstract CipherOutputStreamFipsOutputAEADEncryptor. getEncryptingStream(java.io.OutputStream out)abstract CipherOutputStreamFipsOutputEncryptor. 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 classCipherOutputStreamImplA 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.
-