t_rust_less_lib/secrets_store/estimate/
mod.rs

1use crate::api::PasswordStrength;
2
3mod zxcvbn;
4
5pub use self::zxcvbn::*;
6
7pub trait PasswordEstimator {
8  fn estimate_strength(password: &str, user_inputs: &[&str]) -> PasswordStrength;
9}