Experimenting with ECB and CBC Ciphers of AES
The openssl help shows 2 groups ciphers with ECB (Electronic Code book) and CBC (Cipher Block Chaining) suffixes. For example aes-128-ecb and aes-128-cbc or aes-256-ecb and aes-256-cbc for AES (Advanced Encryption Standard) ciphers. In ECB mode input data is divided in blocks of the same length. Then every block will be encrypted with the same… Read More »