Metadata-Version: 2.1
Name: aes
Version: 1.0.1
Summary: AES(Advanced Encryption Standard) in Python
Home-page: https://github.com/DonggeunKwon/aes
Author: Donggeun Kwon
Author-email: donggeun.kwon@gmail.com
License: MIT
Keywords: AES,Cipher,Advanced Encryption Standard
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 2 - Pre-Alpha
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE

# AES; Advanced Encryption Standard

Implementation of Advanced Encryption Standard (AES) Block Cipher [[pdf](http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf)]



```python
from aes import aes

mk = 0x000102030405060708090a0b0c0d0e0f

cipher = aes(mk)
cipher.encrypt(0x00112233445566778899aabbccddeeff)
```

[105, 196, 224, 216, 106, 123, 4, 48, 216, 205, 183, 128, 112, 180, 197, 90]



```python
cipher.decrypt([105, 196, 224, 216, 106, 123, 4, 48, 216, 205, 183, 128, 112, 180, 197, 90], byte=True)
```

88962710306127702866241727433142015
