immutable-trace 0.1.7

Tamper-evident immutable audit trace: signing, verification, ingestion and CLI
Documentation
1
2
3
4
5
6
7
8
9
10
mod storage;
mod verify;

pub use storage::{
    AuditLedger, InMemoryAuditLedger, InMemoryOperationLog, InMemoryRawDataStore, IngestDecision,
    IngestService, IngestServiceError, OperationLogEntry, OperationLogStore, RawDataStore,
};
#[cfg(feature = "s3")]
pub use storage::{S3Backend, S3CompatibleRawDataStore, S3ObjectStoreConfig, S3StoreError};
pub use verify::{IngestError, IngestState};