Skip to content

Commit

Permalink
fixup! WIP tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
poljar committed Feb 24, 2023
1 parent 8ac7f88 commit 42dc352
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions crates/matrix-sdk-crypto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,14 @@ pub mod vodozemac {
///
/// ## Speeding up encryption for large groups
///
/// In the previous section we learned how to utilize a key agreement protocol
/// to establish secure 1-to-1 encrypted communication channels. These channels
/// allow us to encrypt a message for each device separately.
///
/// One critical property of these channels is that, if you want to send a
/// message to a group of devices, we'll need to encrypt the message for each
/// device individually.
///
/// TODO Explain how megolm fits into this
///
/// # Getting started
Expand Down Expand Up @@ -896,8 +904,8 @@ pub mod vodozemac {
///
/// ## Appendix: Combining the session creation and room key exchange
///
/// The steps from the previous three sections should combined into a single method that is used to
/// send messages.
/// The steps from the previous three sections should combined into a single
/// method that is used to send messages.
///
/// ```no_run
/// # use std::collections::{BTreeMap, HashSet};
Expand Down

0 comments on commit 42dc352

Please sign in to comment.