noosphere-core 0.18.1

Core data types of the Rust Noosphere implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Data types and helper routines related to general Noosphere authority
//! concepts.
//!
//! This includes key material generation, expressing capabilities and passing
//! around proof of authorization within the other corners of the API.

mod author;
mod authorization;
mod capability;
mod key_material;
mod walk;

pub use author::*;
pub use authorization::*;
pub use capability::*;
pub use key_material::*;
pub use walk::*;