pqrascv-hardware 1.0.0-rc.5

Hardware-rooted trust and distributed verifier consensus for PQ-RASCV
Documentation
1
2
3
4
5
6
7
8
9
use crate::policy::{HardwarePolicyContext, HardwarePolicyError, HardwarePolicyRule};

#[allow(clippy::too_many_lines, clippy::collapsible_match)]
pub fn evaluate_domain_rule(
    _rule: &HardwarePolicyRule,
    _ctx: &HardwarePolicyContext<'_>,
) -> Result<bool, HardwarePolicyError> {
    Ok(false)
}