Skip to content

Commit c8c1114

Browse files
authored
password-auth v0.3.0 (#434)
1 parent 54d68a4 commit c8c1114

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

password-auth/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.3.0 (2023-06-24)
9+
### Added
10+
- Derive `Eq`/`PartialEq` on `*Error` ([#433])
11+
12+
### Changed
13+
- Rename `Error` (back) to `VerifyError` ([#432])
14+
15+
[#432]: https://github.com/RustCrypto/password-hashes/pull/432
16+
[#433]: https://github.com/RustCrypto/password-hashes/pull/433
17+
818
## 0.2.0 (2023-06-24)
919
### Added
1020
- `is_hash_obsolete` ([#428])

password-auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "password-auth"
3-
version = "0.3.0-pre"
3+
version = "0.3.0"
44
description = """
55
Password authentication library with a focus on simplicity and ease-of-use,
66
with support for Argon2, PBKDF2, and scrypt password hashing algorithms

password-auth/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ with support for [Argon2], [PBKDF2], and [scrypt] password hashing algorithms.
1616

1717
`password-auth` is a high-level password authentication library with a simple
1818
interface which eliminates as much complexity and user choice as possible.
19+
20+
It wraps pure Rust implementations of multiple password hashing algorithms
21+
maintained by the [RustCrypto] organization, with the goal of providing a
22+
stable interface while allowing the password hashing algorithm implementations
23+
to evolve at a faster pace.
24+
25+
## Usage
26+
1927
The core API consists of two functions:
2028

2129
- [`generate_hash`]: generates a password hash from the provided password. The

0 commit comments

Comments
 (0)