#encryption #key-exchange #aead #crypto

no-std hpke

An implementation of the HPKE hybrid encryption standard (RFC 9180) in pure Rust

24 releases

0.11.0 Oct 11, 2023
0.10.0 Oct 2, 2022
0.9.0 May 5, 2022
0.8.0 Dec 5, 2021
0.1.8 Jul 17, 2020

#91 in Cryptography

Download history 4942/week @ 2024-01-01 6210/week @ 2024-01-08 5893/week @ 2024-01-15 6099/week @ 2024-01-22 4755/week @ 2024-01-29 5393/week @ 2024-02-05 4911/week @ 2024-02-12 5361/week @ 2024-02-19 3238/week @ 2024-02-26 5336/week @ 2024-03-04 6112/week @ 2024-03-11 8291/week @ 2024-03-18 4828/week @ 2024-03-25 7674/week @ 2024-04-01 6504/week @ 2024-04-08 7446/week @ 2024-04-15

26,501 downloads per month
Used in 19 crates (8 directly)

MIT/Apache

1.5MB
2.5K SLoC

rust-hpke

Version Docs CI

This is an implementation of the HPKE hybrid encryption standard (RFC 9180).

Warning

This crate has not been formally audited. Cloudflare did a security review of version 0.8, though:

The HPKE implementation we decided on comes with the caveat of not yet being formally audited, so we performed our own internal security review. We analyzed the cryptography primitives being used and the corresponding libraries. Between the composition of said primitives and secure programming practices like correctly zeroing memory and safe usage of random number generators, we found no security issues.

What it implements

This implementation complies with the HPKE standard (RFC 9180).

Here are all the primitives listed in the spec. The primitives with checked boxes are the ones that are implemented.

  • KEMs
    • DHKEM(Curve25519, HKDF-SHA256)
    • DHKEM(Curve448, HKDF-SHA512)
    • DHKEM(P-256, HKDF-SHA256)
    • DHKEM(P-384, HKDF-SHA384)
    • DHKEM(P-521, HKDF-SHA512)
  • KDFs
    • HKDF-SHA256
    • HKDF-SHA384
    • HKDF-SHA512
  • AEADs
    • AES-GCM-128
    • AES-GCM-256
    • ChaCha20Poly1305

Crate Features

Default features flags: alloc, x25519, p256.

Feature flag list:

  • alloc - Includes allocating methods like AeadCtxR::open() and AeadCtxS::seal()
  • x25519 - Enables X25519-based KEMs
  • p256 - Enables NIST P-256-based KEMs
  • p384 - Enables NIST P-384-based KEMs
  • serde_impls - Includes implementations of serde::Serialize and serde::Deserialize for all hpke::Serializable and hpke::Deserializable types
  • std - Includes an implementation of std::error::Error for HpkeError. Also does what alloc does.

For info on how to omit or include feature flags, see the cargo docs on features.

Usage Examples

See the client-server example for an idea of how to use HPKE.

MSRV

The current minimum supported Rust version (MSRV) is 1.65.0 (897e37553 2022-11-02).

Changelog

See CHANGELOG.md for a list of changes made throughout past versions.

Tests

To run all tests, execute cargo test --all-features. This includes known-answer tests, which test against test-vector-COMMIT_ID.json,where COMMIT_ID is the short commit of the version of the spec that the test vectors came from. The finalized spec uses commit 5f503c5. See the reference implementation for information on how to generate a test vector.

Benchmarks

To run all benchmarks, execute cargo bench --all-features. If you set your own feature flags, the benchmarks will still work, and run the subset of benches that it is able to. The results of a benchmark can be read as a neat webpage at target/criterion/report/index.html.

Ciphersuites benchmarked:

  • NIST Ciphersuite with 128-bit security: AES-GCM-128, HKDF-SHA256, ECDH-P256
  • Non-NIST Ciphersuite with 128-bit security: ChaCha20-Poly1305, HKDF-SHA256, X25519

Functions benchmarked in each ciphersuite:

  • Kem::gen_keypair
  • setup_sender with OpModes of Base, Auth, Psk, and AuthPsk
  • setup_receiver with OpModes of Base, Auth, Psk, and AuthPsk
  • AeadCtxS::seal with plaintext length 64 and AAD length 64
  • AeadCtxR::open with ciphertext length 64 and AAD length 64

Agility

A definition: crypto agility refers to the ability of a cryptosystem or protocol to vary its underlying primitives. For example, TLS has "crypto agility" in that you can run the protocol with many different ciphersuites.

This crate does not support crypto agility out of the box. This is because the cryptographic primitives are encoded as types satisfying certain constraints, and types need to be determined at compile time (broadly speaking). That said, there is nothing preventing you from implementing agility yourself. There is a sample implementation in the examples folder. The sample implementation is messy because agility is messy.

License

Licensed under either of

at your option.

Dependencies

~3.5–5.5MB
~106K SLoC