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.
- Host: GitHub
- URL: https://github.com/egebilecen/aes-128-ecb
- Owner: egebilecen
- License: gpl-3.0
- Created: 2024-05-11T10:29:48.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-05-11T10:29:49.000Z (12 months ago)
- Last Synced: 2025-03-25T07:12:23.419Z (about 1 month ago)
- Topics: aes-128, encryption, python
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.