CipherMode

CipherMode enum

Block cipher mode.

enum class CipherMode

Values

NameValueDescription
CBC1Cipher block chaining which combines current block with previous block to improve encryption.
ECB2Electronic codebook mode with no inter-block influences; results in weaker encryption.
OFB3Output feedback mode that handles large input blocks in small pieces.
CFB4Cipher feedback mode that handles large input blocks in small pieces. Mangling rules differ from such of OFB.
CTS5Cipher text stealing mode, behaves like CBC for all but two last blocks of text.

See Also