mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-23 23:27:57 +01:00
25 lines
781 B
Rust
25 lines
781 B
Rust
mod server;
|
|
pub use server::FabFire;
|
|
|
|
use rsasl::mechname::Mechname;
|
|
use rsasl::registry::{Mechanism, MECHANISMS, Side};
|
|
|
|
const MECHNAME: &'static Mechname = &Mechname::const_new_unchecked(b"X-FABFIRE");
|
|
|
|
#[linkme::distributed_slice(MECHANISMS)]
|
|
pub static FABFIRE: Mechanism =
|
|
Mechanism::build(MECHNAME, 300, None, Some(FabFire::new_server), Side::Client);
|
|
|
|
use std::marker::PhantomData;
|
|
use rsasl::property::SizedProperty;
|
|
|
|
// All Property types must implement Debug.
|
|
#[derive(Debug)]
|
|
// The `PhantomData` in the constructor is only used so external crates can't construct this type.
|
|
pub struct FabFireCardKey(PhantomData<()>);
|
|
|
|
impl SizedProperty<'_> for FabFireCardKey {
|
|
type Value = [u8; 16];
|
|
const DESCRIPTION: &'static str = "A AES128 key for a FabFire card";
|
|
}
|