dcrypt.crypto.padding.padding

Undocumented in source.

Public Imports

dcrypt.crypto.blockcipher
public import dcrypt.crypto.blockcipher;
Undocumented in source.

Members

Classes

InvalidCipherTextException (from dcrypt.exceptions)
class InvalidCipherTextException via public import dcrypt.exceptions : InvalidCipherTextException;
Undocumented in source.

Structs

PaddedBufferedBlockCipher
struct PaddedBufferedBlockCipher(C, Padding, bool permitPartialBlock = false)

PaddedBufferedBlockCipher extends a block cipher or mode (CTR, CBC, ...) by the ability to process data that is not a multiple of the block size. The last block will be padded according to the chosen padding scheme. If the last block is full, then a additional padding block will be appended.

Templates

isBlockCipherPadding
template isBlockCipherPadding(T)

test if T is a block cipher padding

Meta