This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
stateless_recovery.rs
67 lines (56 loc) · 2.05 KB
/
stateless_recovery.rs
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
use iota_streams::{
app::transport::tangle::client::Client,
app_channels::api::tangle::{Author, Bytes, ChannelType},
core::{println, Result},
};
use crate::examples::{verify_messages, ALPH9};
use rand::Rng;
pub async fn example(node_url: &str) -> Result<()> {
// Generate a unique seed for the author
let seed: &str = &(0..81)
.map(|_| {
ALPH9
.chars()
.nth(rand::thread_rng().gen_range(0, 27))
.unwrap()
})
.collect::<String>();
// Create the Transport Client
let client = Client::new_from_url(node_url);
// Generate an Author
let mut author = Author::new(seed, ChannelType::SingleBranch, client.clone());
// Create the channel with an announcement message. Make sure to save the resulting link somewhere,
let announcement_link = author.send_announce().await?;
println!(
"Announcement Link: {}\nTangle Index: {:#}\n",
announcement_link, announcement_link.to_msg_index()
);
// Author will now send signed encrypted messages in a chain
let msg_inputs = vec!["Send", "Some", "Messages"];
let mut prev_msg_link = announcement_link.clone();
for input in &msg_inputs {
let (msg_link, _seq_link) = author.send_signed_packet(
&prev_msg_link,
&Bytes::default(),
&Bytes(input.as_bytes().to_vec()),
).await?;
println!("Sent msg: {}, tangle index: {:#}", msg_link, msg_link.to_msg_index());
prev_msg_link = msg_link;
}
// Recover from scratch
let mut new_author =
Author::recover(
seed,
&announcement_link,
ChannelType::SingleBranch,
client
).await?;
let (last_msg_link, _seq) = new_author.send_signed_packet(
&prev_msg_link,
&Bytes::default(),
&Bytes("One last message".as_bytes().to_vec()),
).await?;
let retrieved = new_author.fetch_prev_msgs(&last_msg_link, msg_inputs.len()).await?;
verify_messages(&msg_inputs, retrieved)?;
Ok(())
}