IBlockCipherMode Interface

Definition

Namespace: Org.BouncyCastle.Crypto.Modes
Assembly: BouncyCastle.Cryptography (in BouncyCastle.Cryptography.dll) Version: 2.3.0-beta.187+d6da5648ae
public interface IBlockCipherMode : IBlockCipher
Implements
IBlockCipher

Properties

AlgorithmNameThe name of the algorithm this cipher implements.
(Inherited from IBlockCipher)
IsPartialBlockOkayIndicates whether this cipher mode can handle partial blocks.
UnderlyingCipherReturn the
C#
underlying this cipher mode.

Methods

GetBlockSize
(Inherited from IBlockCipher)
InitInitialise the cipher.
(Inherited from IBlockCipher)
ProcessBlock(ReadOnlySpanByte, SpanByte)Process a block.
(Inherited from IBlockCipher)
ProcessBlock(Byte, Int32, Byte, Int32)Process a block.
(Inherited from IBlockCipher)
Reset Reset the cipher mode to the same state as it was after the last init (if there was one).

See Also