pub trait ChallengeAuthenticator {
// Required methods
fn sign_challenge(&self, nonce: &[u8]) -> Vec<u8> ⓘ;
fn verify_challenge(&self, nonce: &[u8], signature: &[u8]) -> bool;
}Expand description
Minimal authenticator stub for challenge validation.