Java org.bouncycastle.crypto.io CipherOutputStream fields, constructors, methods, implement or subclass

Example usage for Java org.bouncycastle.crypto.io CipherOutputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.bouncycastle.crypto.io CipherOutputStream.

The text is from its open source code.

Constructor

CipherOutputStream(OutputStream os, BufferedBlockCipher cipher)
Constructs a CipherOutputStream from an OutputStream and a BufferedBlockCipher.
CipherOutputStream(OutputStream os, StreamCipher cipher)
Constructs a CipherOutputStream from an OutputStream and a BufferedBlockCipher.
CipherOutputStream(OutputStream os, AEADBlockCipher cipher)
Constructs a CipherOutputStream from an OutputStream and a AEADBlockCipher.

Method

voidclose()
Closes this output stream and releases any system resources associated with this stream.
voidwrite(int b)
Writes the specified byte to this output stream.
voidwrite(byte[] b)
Writes b.length bytes from the specified byte array to this output stream.