Skip to main content

tibet_cortex_core/
lib.rs

1//! TIBET Cortex Core — Types, tokens, and crypto primitives
2//!
3//! The foundation of TIBET Cortex: zero-trust AI knowledge processing.
4
5pub mod envelope;
6pub mod tibet;
7pub mod crypto;
8pub mod error;
9
10pub use envelope::{Envelope, EnvelopeBlock};
11pub use tibet::{TibetToken, Provenance};
12pub use crypto::{KeyPair, ContentHash};
13pub use error::CortexError;