vios_app 0.1.1

Small JSON vaults: Argon2id + AES-GCM, with optional AAD binding.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// 🎯 reem_congruence.rs — REEM Congruence Matcher

/// Returns  if both tone and intent match exactly (case-insensitive)
pub fn is_reem_match(a: &str, b: &str) -> bool {
    a.eq_ignore_ascii_case(b)
}

/// Threshold for congruence scoring between tone and facial expression
pub struct CongruenceThreshold {
    pub min: f32,
    pub max: f32,
}