diff --git a/Cargo.lock b/Cargo.lock index 69e7a0ae..07a2261f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -591,7 +591,7 @@ checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36" [[package]] name = "yescrypt" -version = "0.1.0-pre.1" +version = "0.1.0-pre.2" dependencies = [ "hex-literal", "hmac", diff --git a/yescrypt/Cargo.toml b/yescrypt/Cargo.toml index bd911773..9892ae6f 100644 --- a/yescrypt/Cargo.toml +++ b/yescrypt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yescrypt" -version = "0.1.0-pre.1" +version = "0.1.0-pre.2" description = "Pure Rust implementation of the yescrypt password-based key derivation function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/yescrypt/README.md b/yescrypt/README.md index e504911f..b9d08b4c 100644 --- a/yescrypt/README.md +++ b/yescrypt/README.md @@ -22,11 +22,7 @@ The implementation contained in this crate has never been independently audited! USE AT YOUR OWN RISK! Note that this crate is in an early stage of implementation and may contain bugs or features which -do not work correctly, potentially resulting in miscomputed outputs which do not match the ones -produced by the reference implementation. - -We suggest before using yescrypt params other than `Params::default` to ensure that password hashes -produced by this crate match the ones produced by the reference implementation. +do not work correctly. ## Minimum Supported Rust Version (MSRV) Policy