idprova-core 0.1.1

Core library for IDProva — AI agent identity, delegation, and audit
Documentation
1
2
3
4
5
6
7
8
9
10
//! Cryptographic primitives for IDProva.
//!
//! Provides Ed25519 key generation, signing, and verification,
//! plus BLAKE3/SHA-256 hashing utilities.

pub mod hash;
pub mod keys;

pub use hash::{blake3_hash, sha256_hash};
pub use keys::KeyPair;