Crate pbkdf2[][src]

This crate implements the PBKDF2 key derivation function as specified in RFC 2898.

If you are only using the low-level pbkdf2 function instead of the higher-level Pbkdf2 struct to produce/verify hash strings, it's recommended to disable default features in your Cargo.toml:

[dependencies]
pbkdf2 = { version = "0.2", default-features = false }

Re-exports

pub use password_hash;

Structs

Paramssimple

PBKDF2 params

Pbkdf2simple

PBKDF2 type for use with PasswordHasher.

Enums

Algorithmsimple

PBKDF2 variants.

Functions

pbkdf2

Generic implementation of PBKDF2 algorithm.