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
use hkdf::Hkdf;
use serde::{Deserialize, Serialize};
use sha2::Sha256;
use zeroize::Zeroize;
use super::{
chain_key::{ChainKey, RemoteChainKey},
ratchet::{RatchetKey, RemoteRatchetKey},
};
const ADVANCEMENT_SEED: &[u8; 11] = b"OLM_RATCHET";
#[derive(Serialize, Deserialize, Clone, Zeroize)]
#[serde(transparent)]
#[zeroize(drop)]
pub(crate) struct RootKey {
pub key: Box<[u8; 32]>,
}
#[derive(Serialize, Deserialize, Clone, Zeroize)]
#[zeroize(drop)]
pub(crate) struct RemoteRootKey {
pub key: Box<[u8; 32]>,
}
fn kdf(
root_key: &[u8; 32],
ratchet_key: &RatchetKey,
remote_ratchet_key: &RemoteRatchetKey,
) -> Box<[u8; 64]> {
let shared_secret = ratchet_key.diffie_hellman(remote_ratchet_key);
let hkdf: Hkdf<Sha256> = Hkdf::new(Some(root_key.as_ref()), shared_secret.as_bytes());
let mut output = Box::new([0u8; 64]);
hkdf.expand(ADVANCEMENT_SEED, output.as_mut_slice()).expect("Can't expand");
output
}
impl RemoteRootKey {
pub(super) fn new(bytes: Box<[u8; 32]>) -> Self {
Self { key: bytes }
}
pub(super) fn advance(
&self,
remote_ratchet_key: &RemoteRatchetKey,
) -> (RootKey, ChainKey, RatchetKey) {
let ratchet_key = RatchetKey::new();
let output = kdf(&self.key, &ratchet_key, remote_ratchet_key);
let mut chain_key = Box::new([0u8; 32]);
let mut root_key = Box::new([0u8; 32]);
chain_key.copy_from_slice(&output[32..]);
root_key.copy_from_slice(&output[..32]);
let chain_key = ChainKey::new(chain_key);
let root_key = RootKey::new(root_key);
(root_key, chain_key, ratchet_key)
}
}
impl RootKey {
pub(super) fn new(bytes: Box<[u8; 32]>) -> Self {
Self { key: bytes }
}
pub(super) fn advance(
&self,
old_ratchet_key: &RatchetKey,
remote_ratchet_key: &RemoteRatchetKey,
) -> (RemoteRootKey, RemoteChainKey) {
let output = kdf(&self.key, old_ratchet_key, remote_ratchet_key);
let mut chain_key = Box::new([0u8; 32]);
let mut root_key = Box::new([0u8; 32]);
root_key.copy_from_slice(&output[..32]);
chain_key.copy_from_slice(&output[32..]);
let root_key = RemoteRootKey::new(root_key);
let chain_key = RemoteChainKey::new(chain_key);
(root_key, chain_key)
}
}