An open API service indexing awesome lists of open source software.

https://github.com/egebilecen/aes-128-ecb

AES-128 encryption algorithm ECB implementation for educational purposes.
https://github.com/egebilecen/aes-128-ecb

aes-128 encryption python

Last synced: 28 days ago
JSON representation

AES-128 encryption algorithm ECB implementation for educational purposes.

Awesome Lists containing this project

README

        

This repository contains the implementation of the encryption algorithm of the AES-128 block cipher. It features a fully commented code with many utility functions to implement the algorithm. This code is written for educational purposes; thus, it shouldn't be used for production, as it's not written with optimization in mind.

**Note:**
* This code only supports 128-bit key and 128-bit block.
* Only ECB-mode is implemented.
* Decryption is not implemented, as it's just the reverse operation of encryption.
* No padding scheme is implemented; thus, only data with the exact size of the block can be encrypted.