Crates.io | aes-gcm |
lib.rs | aes-gcm |
version | 0.11.0-pre.2 |
source | src |
created_at | 2019-08-16 22:34:48.520552 |
updated_at | 2024-10-07 19:25:32.759618 |
description | Pure Rust implementation of the AES-GCM (Galois/Counter Mode) Authenticated Encryption with Associated Data (AEAD) Cipher with optional architecture-specific hardware acceleration |
homepage | |
repository | https://github.com/RustCrypto/AEADs |
max_upload_size | |
id | 157486 |
size | 384,115 |
Pure Rust implementation of the AES-GCM Authenticated Encryption with Associated Data (AEAD) cipher.
This crate has received one security audit by NCC Group, with no significant findings. We would like to thank MobileCoin for funding the audit.
All implementations contained in the crate are designed to execute in constant time, either by relying on hardware intrinsics (i.e. AES-NI and CLMUL on x86/x86_64), or using a portable implementation which is only constant time on processors which implement constant-time multiplication.
It is not suitable for use on processors with a variable-time multiplication operation (e.g. short circuit on multiply-by-zero / multiply-by-one, such as certain 32-bit PowerPC CPUs and some non-ARM microcontrollers).
Licensed under either of:
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.