1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//! This crate supports the domain of "identities", which is required to create secure channels:
//!
//! - the `identity` module describes an entity as a set of verified key changes and an identifier
//! uniquely representing those changes
//!
//! - the `identities` module provides services to create, update, and import identities
//!
//! - the `credential` module describes sets of attributes describing a given identity and signed by
//! another identity
//!
//! - the `credentials` module provides services to create, import and verify credentials
//!
//! - the `secure_channel` module describes the steps required to establish a secure channel
//! between 2 identities
//!
//! - the `secure_channels` module provides services to create a secure channel between 2 identities
extern crate alloc;
extern crate core;
///
/// Exports
///
pub use *;
pub use *;
pub use *;
pub use *;
pub use ;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
/// Utilities
/// Errors
/// On-the-wire data types
/// Service for the management of Identities
/// Data types representing a verified Identity
/// Service for the management of Purpose keys
/// Data types representing a verified Purpose Key
/// Services for creating and validating credentials
/// Data types supporting the creation of a secure channels
/// Service supporting the creation of secure channel listener and connection to a listener
/// Vault