Skip to main content

A modular Python implementation of AES featuring customizable transformations and comprehensive JSON dataflow logging for cryptographic analysis.

Project description

Warning: This implementation is intended for analysis and educational purpose and should not be used for real-world security.

About

  • Author: shrimp2845
  • Version: 0.3.0
  • License: MIT

A pure Python implementation of the Advanced Encryption Standard (AES) algorithm with support for multiple key sizes, configurable internal transformations, detailed logging, and multiple cipher modes of operation.

Features

  • AES-128/AES-192/AES-256 support
  • ECB/CBC/CTR modes
  • PKCS#7 padding
  • Custom AES transformation configuration
  • Custom S-Box support
  • Encryption/decryption logging

Project Structure


project_AES/
  ├── __init__.py
  ├── block_utils.py
  ├── configs.py
  ├── project_AES.py
  └── aes_core/
      ├── __init__.py
      ├── cipher.py
      ├── core_utils.py
      ├── key_expansion.py
      ├── math_utils.py
      └── round.py

Installation

Requires Python 3.10+

pip install project-aes

or

pip install tqdm
git clone https://github.com/shrimp2845-tw/project_AES.git
cd project_AES

Quick Start

from project_AES import AES
key = b"0123456789abcdef"
plaintext = b"hello world"
cipher = AES(key)
ciphertext = cipher.encrypt(plaintext)
print(ciphertext)

Docs

class initialize
----------------------
from project_AES import AES
aes = AES(key, mode='ECB', config=None)

key -> bytes (16, 24 or 32 bytes)
Required. AES key for 128/192/256-bit encryption.
mode -> str (optional)
Block cipher mode of operation.
Supported: 'ECB', 'CBC', 'CTR'
Default: 'ECB'
config -> AESConfig (optional)
Advanced configuration. Default is AESConfig()


methods
----------------------
encrypt(data: bytes) -> bytes
decrypt(data: bytes) -> bytes
→ Encrypt/decrypt bytes data

encrypt_block(block: bytes) -> bytes
decrypt_block(block: bytes) -> bytes
→ single block (16 bytes) encryption/decryption

Examples

This project includes two example scripts demonstrating different functionalities of the module:

​1.File Cipher: A script for encrypting and decrypting files using AES with various operation modes (ECB, CBC, CTR).

​2.Avalanche Observation: A script to observe the avalanche effect by testing how bit-flips in plaintext affect the ciphertext under different configurations.

Samples

1.File Cipher:

You can try to decrypt these examples by your self

  • hina.png -> encrypt(key=gehenna, mode=ECB) -> hina.bin

  • kayoko.jpg -> encrypt(key=cat, mode=CBC) -> kayoko.bin

  • r18.gif -> encrypt(key=give you up, mode=CTR) -> r18.bin

(I originally wanted to use a picture of Shiina Mahiru, but I couldn’t find any good images under a cc license QAQ)

2.Avalanche Observation:

Alt-text

Disclaimer

This implementation is intended for analysis and educational purposes only.
It does not guarantee cryptographic security or production-level performance efficiency.

Do not use this project in any environment that requires strong security assurances.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

project_aes-0.3.0.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

project_aes-0.3.0-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file project_aes-0.3.0.tar.gz.

File metadata

  • Download URL: project_aes-0.3.0.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.13

File hashes

Hashes for project_aes-0.3.0.tar.gz
Algorithm Hash digest
SHA256 7577d3e972bcbec94fe287dab9b06ae703c76a775024aa6da12440a4965122b1
MD5 c81d90d8e299d422280f5b1eb3a9d08a
BLAKE2b-256 bbfcf831e75e73ae537dd0383ee9492bfade6a34a9095f192f277a6a9714ecc7

See more details on using hashes here.

File details

Details for the file project_aes-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: project_aes-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.13

File hashes

Hashes for project_aes-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2208da195c1abb98f099314da8e6d88b619f835c83ca12ec81b3eb1780543656
MD5 1a71f08319ed66d5630db3f5db55395d
BLAKE2b-256 bc1c20935e0625e0f2e5ffe7ff1df50a23a46a430024645c47d408772ac4aa77

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page