Skip to content

mike-boquard/rust-kbkdf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

  • [PseudoRandomFunctionKey]
  • [PseudoRandomFunction]

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages