Add app tokens (secondary passwords) to afford cheaper hashes

This commit is contained in:
Lennart
2024-10-06 12:54:19 +02:00
parent a119e7f099
commit f7d253de85
4 changed files with 50 additions and 9 deletions

View File

@@ -29,7 +29,9 @@ actix-web-httpauth = "0.8"
anyhow = { version = "1.0", features = ["backtrace"] }
serde = { version = "1.0", features = ["serde_derive", "derive", "rc"] }
futures-util = "0.3"
password-auth = "1.0"
password-auth = { version = "1.0", features = ["argon2", "pbkdf2"] }
pbkdf2 = { version = "0.12", features = ["simple"] }
rand_core = { version = "0.6", features = ["std"] }
chrono = { version = "0.4", features = ["serde"] }
regex = "1.10"
lazy_static = "1.5"