polyval 0.7.0-rc.6

POLYVAL is a GHASH-like universal hash over GF(2^128) useful for constructing a Message Authentication Code (MAC)
Documentation
# RustCrypto: POLYVAL

[![crate][crate-image]][crate-link]
[![Docs][docs-image]][docs-link]
[![Build Status][build-image]][build-link]
![Apache2/MIT licensed][license-image]
![Rust Version][rustc-image]
[![Project Chat][chat-image]][chat-link]
[![HAZMAT][hazmat-image]][hazmat-link]

[POLYVAL][1] ([RFC 8452][2]) is a [universal hash function][3] which operates
over GF(2^128) and can be used for constructing a
[Message Authentication Code (MAC)][4].

Its primary intended use is for implementing [AES-GCM-SIV][5], however it is
closely related to [GHASH][6] and therefore can also be used to implement
[AES-GCM][7] at no cost to performance on little endian architectures.

From [RFC 8452 § 3][8] which defines POLYVAL for use in AES-GCM-SIV:

> "POLYVAL, like GHASH (the authenticator in AES-GCM; ...), operates in a
> binary field of size 2^128.  The field is defined by the irreducible
> polynomial x^128 + x^127 + x^126 + x^121 + 1."

By multiplying (in the finite field sense) a sequence of 128-bit blocks of
input data data by a field element `H`, POLYVAL can be used to authenticate
the message sequence as powers (in the finite field sense) of `H`.

## Security

### ⚠️ Warning: [Hazmat!][hazmat-link]
Universal hash functions have subtle security properties and are primarily intended as a 
building block for constructions like AEAD algorithms.

USE AT YOUR OWN RISK!

### Notes
This crate has received one [security audit by NCC Group][9], with no significant
findings. We would like to thank [MobileCoin][10] 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).

## Supported backends
This crate provides multiple backends including a portable pure Rust
backend as well as ones based on CPU intrinsics.

### "soft" portable backend
As a baseline implementation, this crate provides a constant-time pure Rust
implementation based on BearSSL, which is a straightforward and
compact implementation which uses a clever but simple technique to avoid
carry-spilling.

### ARMv8 intrinsics (`PMULL`)
On `aarch64` targets including `aarch64-apple-darwin` (Apple M1) and Linux
targets such as `aarch64-unknown-linux-gnu` and `aarch64-unknown-linux-musl`,
support for using the `PMULL` instructions in ARMv8's Cryptography Extensions.

On Linux and macOS, support for `PMULL` intrinsics is autodetected at runtime.
On other platforms the `crypto` target feature must be enabled via RUSTFLAGS.

### `x86`/`x86_64` intrinsics (`CMLMUL`)
By default this crate uses runtime detection on `i686`/`x86_64` targets
in order to determine if `CLMUL` is available, and if it is not, it will
fallback to using a constant-time software implementation.

## Relationship to GHASH

POLYVAL can be thought of as the little endian equivalent of GHASH, which
affords it a small performance advantage over GHASH when used on little
endian architectures.

It has also been designed so it can also be used to compute GHASH and with
it GMAC, the Message Authentication Code (MAC) used by AES-GCM.

From [RFC 8452 Appendix A][11]:

> "GHASH and POLYVAL both operate in GF(2^128), although with different
> irreducible polynomials: POLYVAL works modulo x^128 + x^127 + x^126 +
> x^121 + 1 and GHASH works modulo x^128 + x^7 + x^2 + x + 1.  Note
> that these irreducible polynomials are the 'reverse' of each other."

## License

Licensed under either of:

 * [Apache License, Version 2.0]http://www.apache.org/licenses/LICENSE-2.0
 * [MIT license]http://opensource.org/licenses/MIT

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.

[//]: # (badges)

[crate-image]: https://img.shields.io/crates/v/polyval?logo=rust
[crate-link]: https://crates.io/crates/polyval
[docs-image]: https://docs.rs/polyval/badge.svg
[docs-link]: https://docs.rs/polyval/
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/channel/260051-universal-hashes
[build-image]: https://github.com/RustCrypto/universal-hashes/actions/workflows/polyval.yml/badge.svg?branch=master
[build-link]: https://github.com/RustCrypto/universal-hashes/actions/workflows/polyval.yml?query=branch:master
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.85+-blue.svg
[hazmat-image]: https://img.shields.io/badge/crypto-hazmat%E2%9A%A0-red.svg
[hazmat-link]: https://github.com/RustCrypto/meta/blob/master/HAZMAT.md

[//]: # (footnotes)

[1]: https://en.wikipedia.org/wiki/AES-GCM-SIV#Operation
[2]: https://tools.ietf.org/html/rfc8452#section-3
[3]: https://en.wikipedia.org/wiki/Universal_hashing
[4]: https://en.wikipedia.org/wiki/Message_authentication_code
[5]: https://en.wikipedia.org/wiki/AES-GCM-SIV
[6]: https://en.wikipedia.org/wiki/Galois/Counter_Mode#Mathematical_basis
[7]: https://en.wikipedia.org/wiki/Galois/Counter_Mode
[8]: https://tools.ietf.org/html/rfc8452#section-3
[9]: https://research.nccgroup.com/2020/02/26/public-report-rustcrypto-aes-gcm-and-chacha20poly1305-implementation-review/
[10]: https://www.mobilecoin.com/
[11]: https://tools.ietf.org/html/rfc8452#appendix-A