sbom-tools 0.1.22

Semantic SBOM diff and analysis tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! SBOM integrity verification.
//!
//! Provides file hash verification, component hash auditing,
//! and SBOM signature/provenance checking.

mod audit;
mod hash;
mod model_dir;

pub use audit::{HashAuditReport, HashAuditResult, audit_component_hashes};
pub use hash::{HashError, HashVerifyResult, read_hash_file, verify_file_hash};
pub use model_dir::{
    ComponentModelVerification, ModelVerifyReport, ModelVerifyResult, verify_model_dir,
};