From 529ec322afae4acc4d6800eaca36dfbc4793ddfe Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 18 Aug 2024 17:31:14 -0600 Subject: [PATCH] yescrypt v0.0.1-alpha (#517) --- Cargo.lock | 2 +- yescrypt/Cargo.toml | 8 +++----- yescrypt/README.md | 10 ++++++++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0be79d95..1d7061a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -582,7 +582,7 @@ checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" [[package]] name = "yescrypt" -version = "0.0.0" +version = "0.0.1-alpha" dependencies = [ "hex-literal", "hmac", diff --git a/yescrypt/Cargo.toml b/yescrypt/Cargo.toml index 9a80bfbf..c99bf029 100644 --- a/yescrypt/Cargo.toml +++ b/yescrypt/Cargo.toml @@ -1,9 +1,7 @@ [package] name = "yescrypt" -version = "0.0.0" -description = """ -Pure Rust implementation of the yescrypt password hashing function -""" +version = "0.0.1-alpha" +description = "Pure Rust implementation of the yescrypt password hashing function" authors = ["RustCrypto Developers"] license = "BSD-2-Clause" documentation = "https://docs.rs/yescrypt" @@ -22,7 +20,7 @@ pbkdf2 = { version = "=0.13.0-pre.1", path = "../pbkdf2" } salsa20 = { version = "=0.11.0-pre.1", default-features = false } sha2 = { version = "=0.11.0-pre.4", default-features = false } -#[dev-dependencies] +[dev-dependencies] hex-literal = "0.4" [package.metadata.docs.rs] diff --git a/yescrypt/README.md b/yescrypt/README.md index e0a1cf30..0f29d368 100644 --- a/yescrypt/README.md +++ b/yescrypt/README.md @@ -11,6 +11,12 @@ Pure Rust implementation of the [yescrypt] password hashing function. [Documentation][docs-link] +## ⚠️ Security Warning + +The implementation contained in this crate has never been independently audited! + +USE AT YOUR OWN RISK! + ## Minimum Supported Rust Version Rust **1.72** or higher. @@ -48,8 +54,8 @@ dual licensed as above, without any additional terms or conditions. [rustc-image]: https://img.shields.io/badge/rustc-1.60+-blue.svg [chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg [chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260046-password-hashes -[build-image]: https://github.com/RustCrypto/password-hashes/workflows/yescrypt/badge.svg?branch=master&event=push -[build-link]: https://github.com/RustCrypto/password-hashes/actions?query=workflow%3Ayescrypt +[build-image]: https://github.com/RustCrypto/password-hashes/actions/workflows/yescrypt.yml/badge.svg +[build-link]: https://github.com/RustCrypto/password-hashes/actions/workflows/yescrypt.yml [//]: # (links)