#kdf #crypto #random-key #sp800-108

no-std rust-kbkdf

SP800-108 Key Based Key Derivation Using Pseudorandom Functions

1 stable release

1.1.0 Jul 15, 2022
1.0.1 Jul 12, 2022

#1078 in Cryptography

Apache-2.0

23KB
358 lines

Rust Implementation of NIST SP800-108 Key Based Key Derivation Function (KBKDF)

This crate provides a Rust implementation of the NIST SP800-108 standard for performing key-derivation based on a source key.

This crate implements the KBKDF in the following modes:

  • Counter
  • Feedback
  • Double-Pipeline Iteration

This crate was designed such that the user may provide their own Pseudo Random Function (as defined in Section 4 of SP800-108) via the implementation of two traits:

Psuedo Random Function Trait

The purpose of the PRF trait is to allow a user to provide their own implementation of a PRF (as defined in Section 4 of SP800-108).

Please note, that in order for an implementation of KBKDF to be NIST approved, an approved PRF must be used!

The author of this crate does not guarantee that this implementation is NIST approved!

Pseudo Random Function Key

This trait is used to ensure that the implementation of the PseudoRandomFunction trait can access the necessary source key in a way that passes Rust's borrow checker.

Example

An example of how to use the two traits are found in the tests module utilizing the OpenSSL Crate.

Dependencies

~270KB