proofmode 0.9.0

Capture, share, and preserve verifiable photos and videos
Documentation
#![allow(dead_code)]

pub mod check;
pub mod crypto;
pub mod generate;
pub mod generate_error;
pub mod generate_types;

#[cfg(feature = "sign")]
pub mod sign;

#[cfg(feature = "uniffi")]
pub mod uniffi_wrapper;

#[cfg(feature = "uniffi")]
pub use uniffi_wrapper::*;

// Set up UniFFI scaffolding
#[cfg(feature = "uniffi")]
uniffi::setup_scaffolding!("proofmode");

pub use check::{check_cids, check_files, check_urls};
pub use generate::{generate_proof_from_data, generate_proof_from_file};

#[cfg(feature = "wasm")]
pub use generate::wasm::{generate_proof_wasm, get_file_hash};