encypher-c2pa 1.0.1

Offline, verification-only C2PA SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! C2PA core data structures: JUMBF boxes, claim assembly, and parsing.
//!
//! This crate is I/O-free. It builds and parses the JUMBF/CBOR layer used by
//! the format and validation crates.

pub(crate) mod claim;
pub(crate) mod jumbf;
pub(crate) mod spec;

pub(crate) use crate::c2pa_cbor as cbor;
pub(crate) use spec::{ComplianceLevel, EngineProfile, OperatingMode, SpecVersion};