https://github.com/permutationlock/aes_math
An implementation of Rijndael (AES) encryption that builds the operations from the ground up with finite fields and matrix operations.
https://github.com/permutationlock/aes_math
aes-encryption finite-fields
Last synced: about 2 months ago
JSON representation
An implementation of Rijndael (AES) encryption that builds the operations from the ground up with finite fields and matrix operations.
- Host: GitHub
- URL: https://github.com/permutationlock/aes_math
- Owner: permutationlock
- License: mit
- Created: 2015-05-31T12:48:46.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-16T00:47:49.000Z (almost 10 years ago)
- Last Synced: 2025-01-14T15:42:06.629Z (3 months ago)
- Topics: aes-encryption, finite-fields
- Language: C++
- Size: 484 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
- License: LICENSE
Awesome Lists containing this project
README
AES Mathematics
---------------
In this project I created an implementation of the
Rijndael encryption system used in the AES standard
by building each operation from basic concepts.
This was done both to allow anyone to be able to
observe how and why each step of the encryption
process works.