Skip to repository content24 lines · 508 B · rust
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T01:55:10.286Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
omega_identity.rs
1//! Public, Nostr-only identity contract for Omega.
2//!
3//! The secret-bearing wrapper is intentionally inaccessible outside this crate:
4//!
5//! ```compile_fail
6//! use omega_identity::secret::SecretKeyMaterial;
7//! ```
8
9mod contract;
10mod custody;
11mod mutation_lock;
12mod proof;
13mod public_store;
14mod recovery;
15mod recovery_artifact;
16mod secret;
17
18pub use contract::*;
19pub use custody::*;
20pub use proof::*;
21pub use public_store::*;
22pub use recovery::*;
23pub use secret::{ImportedSecret, InvalidImportedSecret};
24