Metadata-Version: 2.4
Name: laimassey
Version: 0.1.0
Summary: Educational Lai-Massey block cipher library with multiple algorithms and block modes.
Author-email: Your Name <you@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/laimassey
Keywords: cryptography,lai-massey,block cipher,crypto,educational
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pycryptodome

# laimassey

An educational cryptography library implementing several Lai-Massey based block ciphers (IDEA-LM, FOX-LM, MISTY-LM) and block modes (ECB, CBC, CTR).

## Install

## Usage
```python
from laimassey import IDEA_LM, CBC

key = b"12345678ABCDEFGH"
cipher = IDEA_LM(key)
mode = CBC(cipher)

ciphertext = mode.encrypt(b"Hello world!")
print(mode.decrypt(ciphertext))
