fabaccess-bffh/bffhd/authentication/fabfire_bin/mod.rs

13 lines
367 B
Rust
Raw Normal View History

mod server;
pub use server::FabFire;
use rsasl::mechname::Mechname;
2022-11-07 23:09:07 +01:00
use rsasl::registry::{Mechanism, MECHANISMS, Side};
const MECHNAME: &'static Mechname = &Mechname::const_new_unchecked(b"X-FABFIRE-BIN");
#[linkme::distributed_slice(MECHANISMS)]
2022-11-07 23:09:07 +01:00
pub static FABFIRE: Mechanism =
Mechanism::build(MECHNAME, 300, None, Some(FabFire::new_server), Side::Client);