https://github.com/kellnr/blog-aes
Advanced Encryption Standard (AES) implementation using t-boxes for faster computation
https://github.com/kellnr/blog-aes
Last synced: 7 months ago
JSON representation
Advanced Encryption Standard (AES) implementation using t-boxes for faster computation
- Host: GitHub
- URL: https://github.com/kellnr/blog-aes
- Owner: kellnr
- License: apache-2.0
- Created: 2023-09-09T07:38:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-09T07:44:18.000Z (almost 3 years ago)
- Last Synced: 2025-01-01T12:45:19.290Z (over 1 year ago)
- Language: Rust
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AES-TBOX
Advanced Encryption Standard (AES) implementation using t-boxes for faster computation.
## Rust Implementation
You find a **Rust** implementation in the directory with the same name in the **aes_tbox** sub-directory. Change to the directory and run the following command to build and run **AES-TBOX**.
```bash
# Test
cargo test
# Benchmark
cargo bench
```