bitvex 0.2.6

Automate CRA compliance: generate OpenVEX reports from Yocto SBOMs by filtering CVEs with kernel config and device tree analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod client;
pub mod offline;

pub use client::EpssClient;
pub use offline::OfflineEpssProvider;

#[derive(Debug, Clone)]
pub struct EpssScore {
    pub cve: String,
    pub epss: f64,
    pub percentile: f64,
}