27 releases
0.7.0-rc.0 | Jul 26, 2024 |
---|---|
0.7.0-pre.0 | Mar 8, 2024 |
0.6.2 | Mar 3, 2024 |
0.6.1 | Jun 16, 2023 |
0.3.1 | Nov 14, 2019 |
#2119 in Cryptography
1,870,132 downloads per month
Used in 2,201 crates
(3 directly)
49KB
915 lines
RustCrypto: POLYVAL
POLYVAL (RFC 8452) is a universal hash function which operates over GF(2^128) and can be used for constructing a Message Authentication Code (MAC).
Its primary intended use is for implementing AES-GCM-SIV, however it is closely related to GHASH and therefore can also be used to implement AES-GCM at no cost to performance on little endian architectures.
Security
⚠️ Warning: Hazmat!
Universal hash functions have subtle security properties and using them correctly is difficult. See the toplevel README.md for more information.
USE AT YOUR OWN RISK!
Notes
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. AVX2 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).
License
Licensed under either of:
at your option.
Contribution
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.
Dependencies
~285–460KB
~10K SLoC