An open API service indexing awesome lists of open source software.

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

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
```