IBlockCipherPadding Interface

Block cipher padders are expected to conform to this interface.

Definition

Namespace: Org.BouncyCastle.Crypto.Paddings
Assembly: BouncyCastle.Cryptography (in BouncyCastle.Cryptography.dll) Version: 2.3.0-beta.187+d6da5648ae
public interface IBlockCipherPadding

Properties

PaddingNameThe name of the algorithm this padder implements.

Methods

AddPadding(Byte, Int32)Add padding to the passed in block.
AddPadding(SpanByte, Int32)Add padding to the passed in block.
InitInitialise the padder.
PadCount(Byte)Determine the length of padding present in the passed in block.
PadCount(ReadOnlySpanByte)Determine the length of padding present in the passed in block.

See Also