ockam_identity 0.134.0

Ockam is a library for building devices that communicate securely, privately and trustfully with cloud services and other devices.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod builder;
mod purpose_key_creation;
mod purpose_key_verification;
#[allow(clippy::module_inception)]
mod purpose_keys;

pub use builder::*;
pub use purpose_key_creation::*;
pub use purpose_key_verification::*;
pub use purpose_keys::*;

/// Purpose Keys storage functions
pub mod storage;