Crates.io | aes_frast |
lib.rs | aes_frast |
version | 0.2.2 |
source | src |
created_at | 2018-04-23 13:04:46.060934 |
updated_at | 2023-08-20 05:22:40.090638 |
description | An easy-to-use lib for AES encryption and decryption, coded in pure safe Rust-lang. |
homepage | |
repository | https://github.com/KaneGreen/aes_frast |
max_upload_size | |
id | 61949 |
size | 140,460 |
NOT for Serious Usage
aes_frast
is an easy-to-use lib for AES encryption and decryption, coded in pure safe Rust-lang. The AES algorithm is implemented by looking-up-tables.
In the name aes_frast
, "frast" is a mix of the words "rust" and "fast". These lib is designed to run as fast as possible on pure Rust-lang code, no ASM.
Functions in this lib is compatible with OpenSSL if they can be found in OpenSSL although maybe in different names.
Any cryptographic audit of this lib has NEVER been conducted. So, please be extremely careful when you are looking for high security.
The author tries to make it more secure, but never gives any guarantee of security.
In addition, some researches have reported that there could be timing problems in looking-up-tables implement. However, this lib assumes that the computers which run the lib are secure and users of this lib have done something to avoid the timing problems. Usages like file encryption may be suitable.
Maybe, this lib is for somebody who just wants to know the structure of AES.
Please see the doc.
In the future, what will the lib be?
I don't know.
Maybe the following will be considered, maybe not:
Pull requests are always welcome. Thank all of you.