kdf 0.1.0

Traits for Key Derivation Functions
Documentation
  • Coverage
  • 100%
    6 out of 6 items documented0 out of 4 items with examples
  • Size
  • Source code size: 18.52 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.73 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • RustCrypto/traits
    719 238 46
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • tarcieri github:rustcrypto:kdfs

RustCrypto: Key Derivation Functions (KDFs)

crate Docs Build Status Apache2/MIT licensed Rust Version Project Chat

Traits which describe the functionality of key derivation functions.

About

Key Derivation Functions (KDFs) are cryptographic algorithms that can be used to derive one or more secret keys from a secret value such as a base derivation key, output of a key-exchange algorithm, or in the case of specially designed password-based key derivation functions: a password.

KDFs can be used to stretch shorter input keys into longer keys or to obtain multiple keys from a single input. They can also be used to transform non-uniform secret values, like the output of a Diffie-Hellman exchange, into uniformly random secrets suitable for use as keys for symmetric cryptographic algorithms (e.g. AES, ChaCha20).

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.