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 common;
/// Services for creating secure channels
#[allow(clippy::module_inception)]
pub mod secure_channels;
mod secure_channels_builder;
mod secure_client;
mod storage;

pub use common::*;
pub use secure_channels::*;
pub use secure_channels_builder::*;
pub use secure_client::*;
pub use storage::*;