atproto-record 0.9.3

AT Protocol record signature operations - cryptographic signing and verification for AT Protocol records
Documentation
//! Cryptographic signature operations for AT Protocol records with IPLD DAG-CBOR serialization.
//!
//! Provides binaries:
//! - `atproto-record-sign`: Sign AT Protocol records with private keys
//! - `atproto-record-verify`: Verify signatures on AT Protocol records

#![forbid(unsafe_code)]
#![warn(missing_docs)]

/// Structured error types for signature verification operations.
///
/// This module defines comprehensive error types that can occur during
/// AT Protocol record signature verification, following the project's
/// error naming conventions.
pub mod errors;

/// Core signature creation and verification functions.
///
/// This module provides the primary functionality for creating and verifying
/// cryptographic signatures on AT Protocol records, with proper handling of
/// signature objects and IPLD serialization.
pub mod signature;

pub mod aturi;

pub mod datetime;