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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
#![deny(
trivial_casts,
trivial_numeric_casts,
unsafe_code,
unused_import_braces,
unused_qualifications,
)]
use crate::EntityError;
use ockam_channel::SecureChannelVault;
use ockam_core::lib::HashMap;
use ockam_core::{Address, Result};
use ockam_node::Context;
use ockam_vault_core::{Hasher, KeyIdVault, SecretVault, Signer, Verifier};
use ockam_vault_sync_core::VaultSync;
mod authentication;
mod change;
mod channel;
mod contact;
mod entity;
mod error;
mod identifiers;
mod imp;
mod key_attributes;
mod traits;
mod worker;
pub use change::*;
pub use channel::*;
pub use contact::*;
pub use entity::*;
pub use error::*;
pub use identifiers::*;
pub use imp::*;
pub use key_attributes::*;
pub use traits::*;
pub use worker::*;
pub trait ProfileVault:
SecretVault + SecureChannelVault + KeyIdVault + Hasher + Signer + Verifier + Clone + Send + 'static
{
}
impl<D> ProfileVault for D where
D: SecretVault
+ SecureChannelVault
+ KeyIdVault
+ Hasher
+ Signer
+ Verifier
+ Clone
+ Send
+ 'static
{
}
pub struct Profile;
impl Profile {
pub async fn create(ctx: &Context, vault: &Address) -> Result<ProfileSync> {
let vault = VaultSync::create_with_worker(ctx, vault)?;
let imp = ProfileImpl::<VaultSync>::create_internal(None, vault)?;
ProfileSync::create(ctx, imp).await
}
}
impl Profile {
pub const NO_EVENT: &'static [u8] = "OCKAM_NO_EVENT".as_bytes();
pub const PROFILE_UPDATE: &'static str = "OCKAM_PUK";
pub const CREDENTIALS_ISSUE: &'static str = "OCKAM_CIK";
pub const CURRENT_CHANGE_VERSION: u8 = 1;
}
pub type ProfileEventAttributes = HashMap<String, String>;
pub type ContactsDb = HashMap<ProfileIdentifier, Contact>;
impl Profile {
pub fn serialize_contact(contact: &Contact) -> Result<Vec<u8>> {
serde_bare::to_vec(&contact).map_err(|_| EntityError::BareError.into())
}
pub fn deserialize_contact(contact: &[u8]) -> Result<Contact> {
let contact: Contact =
serde_bare::from_slice(contact).map_err(|_| EntityError::BareError)?;
Ok(contact)
}
pub fn serialize_change_events(change_events: &[ProfileChangeEvent]) -> Result<Vec<u8>> {
serde_bare::to_vec(&change_events).map_err(|_| EntityError::BareError.into())
}
pub fn deserialize_change_events(change_events: &[u8]) -> Result<Vec<ProfileChangeEvent>> {
let change_events: Vec<ProfileChangeEvent> =
serde_bare::from_slice(change_events).map_err(|_| EntityError::BareError)?;
Ok(change_events)
}
}
#[cfg(test)]
mod test {
use super::*;
use ockam_vault_sync_core::Vault;
fn fn_test_new<P: ProfileTrait>(profile: &mut P) {
profile.verify().unwrap();
let root_key_attributes = KeyAttributes::new(Profile::PROFILE_UPDATE.to_string());
let _alice_root_secret = profile.get_secret_key(&root_key_attributes).unwrap();
let _alice_root_public_key = profile.get_public_key(&root_key_attributes).unwrap();
let truck_key_attributes = KeyAttributes::new("Truck management".to_string());
profile
.create_key(truck_key_attributes.clone(), None)
.unwrap();
profile.verify().unwrap();
let _alice_truck_secret = profile.get_secret_key(&truck_key_attributes).unwrap();
let _alice_truck_public_key = profile.get_public_key(&truck_key_attributes).unwrap();
profile
.rotate_key(truck_key_attributes.clone(), None)
.unwrap();
profile.verify().unwrap();
let _alice_truck_secret = profile.get_secret_key(&truck_key_attributes).unwrap();
let _alice_truck_public_key = profile.get_public_key(&truck_key_attributes).unwrap();
profile
.rotate_key(root_key_attributes.clone(), None)
.unwrap();
profile.verify().unwrap();
let _alice_root_secret = profile.get_secret_key(&root_key_attributes).unwrap();
let _alice_root_public_key = profile.get_public_key(&root_key_attributes).unwrap();
}
#[test]
fn test_new() {
let (mut ctx, mut executor) = ockam_node::start_node();
executor
.execute(async move {
let vault = Vault::create(&ctx).unwrap();
let mut profile = Profile::create(&ctx, &vault).await.unwrap();
fn_test_new(&mut profile);
ctx.stop().await.unwrap();
})
.unwrap();
}
fn fn_test_update<P: ProfileTrait>(alice: &mut P, bob: &mut P) {
let contact_alice = alice.serialize_to_contact().unwrap();
let contact_alice = Profile::deserialize_contact(&contact_alice).unwrap();
let alice_id = contact_alice.identifier().clone();
bob.verify_and_add_contact(contact_alice).unwrap();
alice
.rotate_key(Profile::PROFILE_UPDATE.into(), None)
.unwrap();
let index_a = alice.change_events().unwrap().len();
let change_events = &alice.change_events().unwrap()[index_a..];
let change_events = Profile::serialize_change_events(change_events).unwrap();
let change_events = Profile::deserialize_change_events(&change_events).unwrap();
assert!(bob
.verify_and_update_contact(&alice_id, change_events)
.unwrap());
}
#[test]
fn test_update() {
let (mut ctx, mut executor) = ockam_node::start_node();
executor
.execute(async move {
let vault = Vault::create(&ctx).unwrap();
let mut alice = Profile::create(&ctx, &vault).await.unwrap();
let mut bob = Profile::create(&ctx, &vault).await.unwrap();
fn_test_update(&mut alice, &mut bob);
ctx.stop().await.unwrap();
})
.unwrap();
}
}