2025-10-07 20:39:52 +02:00
|
|
|
/*
|
2025-01-19 14:14:48 +01:00
|
|
|
use std::net::Ipv4Addr;
|
|
|
|
|
pub trait AuthModule{
|
|
|
|
|
fn get_auth_key(addr: Ipv4Addr) -> [u8; 32];
|
2025-10-07 20:39:52 +02:00
|
|
|
}*/
|
2025-01-19 14:14:48 +01:00
|
|
|
/*
|
|
|
|
|
struct AuthServerAuthModule;
|
|
|
|
|
|
|
|
|
|
impl AuthModule for AuthServerAuthModule{
|
|
|
|
|
fn get_auth_key(addr: Ipv4Addr) -> rc4 {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}*/
|