mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
Implements #29 password badlist and quality checking. This checks all new passwords are at least length 10, pass zxcvbn and are not container in a badlist. The current badlist is a preprocessed content of rockyou from seclists, but later wwe'll update this to the top 10million badlist which when processed is about 70k entries..
17 lines
362 B
TOML
17 lines
362 B
TOML
[package]
|
|
name = "kanidm_proto"
|
|
version = "0.1.0"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
uuid = { version = "0.7", features = ["serde", "v4"] }
|
|
actix = { version = "0.7", optional = true }
|
|
zxcvbn = { version = "2.0", features = ["ser"] }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|
|
|