Uses of Class
org.bouncycastle.crypto.UpdateOutputStream
-
Packages that use UpdateOutputStream 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 UpdateOutputStream in org.bouncycastle.crypto
Subclasses of UpdateOutputStream in org.bouncycastle.crypto Modifier and Type Class Description class
CipherOutputStream
Returned stream for writing data for encryption/decryption.Methods in org.bouncycastle.crypto that return UpdateOutputStream Modifier and Type Method Description UpdateOutputStream
AADProcessor. getAADStream()
Return a stream to write associated data to in order to have it incorporated into the AEAD cipher's MAC.UpdateOutputStream
OutputDigestCalculator. getDigestStream()
Returns a stream that will accept data for the purpose of calculating a digest.UpdateOutputStream
OutputXOFCalculator. getFunctionStream()
Returns a stream that will accept data for the purpose of calculating a MAC.UpdateOutputStream
OutputMACCalculator. getMACStream()
Returns a stream that will accept data for the purpose of calculating a MAC.UpdateOutputStream
OutputSigner. getSigningStream()
Returns a stream that will accept data for the purpose of calculating a signature.UpdateOutputStream
OutputVerifier. getVerifyingStream()
Returns a stream that will accept data for the purpose of verifying a previously calculated signature. -
Uses of UpdateOutputStream in org.bouncycastle.crypto.fips
Methods in org.bouncycastle.crypto.fips that return UpdateOutputStream Modifier and Type Method Description abstract UpdateOutputStream
FipsInputAEADDecryptor. getAADStream()
abstract UpdateOutputStream
FipsOutputAEADDecryptor. getAADStream()
abstract UpdateOutputStream
FipsOutputAEADEncryptor. getAADStream()
abstract UpdateOutputStream
FipsOutputDigestCalculator. getDigestStream()
abstract UpdateOutputStream
FipsOutputXOFCalculator. getFunctionStream()
abstract UpdateOutputStream
FipsOutputMACCalculator. getMACStream()
abstract UpdateOutputStream
FipsOutputSigner. getSigningStream()
abstract UpdateOutputStream
FipsOutputSignerUsingSecureRandom. getSigningStream()
abstract UpdateOutputStream
FipsOutputVerifier. getVerifyingStream()
-
Uses of UpdateOutputStream in org.bouncycastle.crypto.internal.io
Subclasses of UpdateOutputStream 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.class
DigestOutputStream
class
MacOutputStream
class
SignerOutputStream
class
XofOutputStream
-