password-encryptor 2.0.0

A helper crate for encrypting and validating password
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Password Encryptor


This crate provides a secure way to encrypt and validate passwords using HMAC with SHA-512 hashing and base64 URL-safe encoding. This crate is designed to help developers protect user passwords effectively in their applications.

# Installation


```
cargo add password_encryptor
```

or add it to the dependencies

```rust
[dependencies]
password-encryptor = "2.0.0"
```