leo.blog();

Block cipher

In Cryptography, a block cipher is a keyed permutation from N-bit blocks to N-bit blocks.

Modes of operation

A block cipher is a simple primitive that takes a key, and can encrypt and decrypt fixed-size blocks of data. This means you need to use a block cipher in a way that makes it suitable to encrypt different sizes of data.

Electronic Code Book (ECB)

Electronic Code Book (ECB) mode is the block cipher in its raw form.

Counter mode (CTR)

Leave a Comment