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

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

Introduction

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

The text is from its open source code.

Constructor

BufferedBlockCipher(BlockCipher cipher)
Create a buffered block cipher without padding.

Method

intdoFinal(byte[] out, int outOff)
Process the last block in the buffer.
intgetBlockSize()
return the blocksize for the underlying cipher.
intgetOutputSize(int length)
return the size of the output buffer required for an update plus a doFinal with an input of 'length' bytes.
BlockCiphergetUnderlyingCipher()
return the cipher this object wraps.
voidinit(boolean forEncryption, CipherParameters params)
initialise the cipher.
intprocessBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
process an array of bytes, producing output if necessary.
voidreset()
Reset the buffer and cipher.