feat: generate PASSWORD_HASH on the fly

* remove PASSWORD environment variable in favor of PASSWORD_HASH
* enhance password validity check server function
* update Dockerfile to include building a binary for generating hashed password
* update README with comprehensive Docker usage instructions hash generation
This commit is contained in:
tetuaoro
2024-07-12 19:22:15 +02:00
parent 62ea932d33
commit 9a19430dc8
10 changed files with 458 additions and 12 deletions
+17
View File
@@ -0,0 +1,17 @@
[package]
name = "wg-password"
version = "0.1.1"
authors = ["tetuaoro <65575727+tetuaoro@users.noreply.github.com>"]
description = "A binary to create bcrypt password hashes for wg-easy, enhancing security."
edition = "2021"
[dependencies]
bcrypt = "0.15.1"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
[[bin]]
name = "wgpw"
path = "src/main.rs"