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

https://github.com/secana/aes-tbox

Advanced Encryption Standard (AES) implementation using t-boxes for faster computation.
https://github.com/secana/aes-tbox

aes aes-encryption crypto cryptography encryption t-box t-boxes

Last synced: about 1 year 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
# Build & Run
cargo run
```

## C Implementation

You find a **C** implementation in the directory with the same name. Change to the directory and run the following commands to build and run **AES-TBOX** on Linux.

```bash
# Build
cmake .
make

# Run
./AES-TBOX
```