AES: Difference between revisions

From miki
Jump to navigation Jump to search
Line 2: Line 2:
In '''Python''':
In '''Python''':
* [http://brandon.sternefamily.net/2007/06/aes-tutorial-python-implementation/ Brandon Stern's AES implementation in Python]
* [http://brandon.sternefamily.net/2007/06/aes-tutorial-python-implementation/ Brandon Stern's AES implementation in Python]
: Including step-by-step test vector (for AES-256)
* [https://github.com/caller9/pythonaes Caller9's python implementation on GitHub]
* [https://github.com/caller9/pythonaes Caller9's python implementation on GitHub]
* [https://github.com/ricmoo/pyaes Richard Moore's implementation on GitHub]
* [https://github.com/ricmoo/pyaes Richard Moore's implementation on GitHub]

Revision as of 12:26, 9 June 2016

Implementations

In Python:

Including step-by-step test vector (for AES-256)

In Javascript: