rustauth-plugins 0.2.0

Official RustAuth plugin modules.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Have I Been Pwned password check plugin.

mod checker;
mod error;
mod options;
mod plugin;

pub use checker::{HaveIBeenPwnedCheckError, HaveIBeenPwnedChecker, ReqwestHaveIBeenPwnedChecker};
pub use error::{PASSWORD_COMPROMISED_CODE, PASSWORD_COMPROMISED_MESSAGE};
pub use options::{HaveIBeenPwnedOptions, HaveIBeenPwnedOptionsBuilder};
pub use plugin::{have_i_been_pwned, RUNTIME_PLUGIN_ID, UPSTREAM_PLUGIN_ID};