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
//! Key derivation and ownership.
//!
//! This module owns two responsibilities:
//! 1. Deriving per-cell, per-layer keys from a master key using HKDF-SHA256.
//! 2. Holding derived key material in types that are opaque, non-cloneable,
//! and zeroised on drop.
//!
//! This is one of exactly two modules permitted to import `ring` directly
//! (the other is `crypto`). The HKDF derivation logic lives here because
//! it operates on the key material itself — not on ciphertexts.
//!
//! ## Derivation structure
//!
//! ```text
//! HKDF-SHA256(
//! ikm = master_key,
//! salt = None,
//! info = len(cell_id) || cell_id || len(layer_tag) || layer_tag || len(context_id) || context_id
//! )
//! ```
//!
//! Each unique combination of cell ID, layer tag, and context ID produces a
//! statistically independent key. The info string uses length-prefixed segments
//! to prevent delimiter collisions. Knowing one derived key reveals nothing
//! about the master key or any other derived key.
use hkdf;
use ;
use crateKEY_LEN;
use crateHexvaultError;
// ---------------------------------------------------------------------------
// Master key
// ---------------------------------------------------------------------------
/// A master key. This is the single secret that must be managed by the caller.
/// All per-cell and per-layer keys are derived from it.
///
/// - Not `Clone`. Cannot be duplicated without explicit conversion.
/// - Zeroised on drop via the `zeroize` crate (`ZeroizeOnDrop`). Memory is
/// overwritten with a volatile write before deallocation — the compiler
/// cannot optimise this away.
// ---------------------------------------------------------------------------
// Partition key
// ---------------------------------------------------------------------------
/// A partition key derived from the master key.
///
/// - Not `Clone`.
/// - Zeroised on drop via `ZeroizeOnDrop`.
// ---------------------------------------------------------------------------
// Derived key
// ---------------------------------------------------------------------------
/// A key derived for a specific cell and layer.
///
/// - Not `Clone`. Each derived key is a single-use value scoped to one
/// cell + layer + context combination.
/// - Zeroised on drop via `ZeroizeOnDrop`.
/// - Raw bytes are never exposed outside this module. Other modules
/// access derived keys only through `as_bytes()`, which is `pub(crate)`.
// ---------------------------------------------------------------------------
// Derivation helpers
// ---------------------------------------------------------------------------
/// The layer tags used in the HKDF info string.
/// These are the fixed identifiers that differentiate the three stack layers.
pub
/// Build a length-prefixed info byte string from variable-length segments.
///
/// Each segment is encoded as `[4-byte big-endian length][segment bytes]`.
/// This prevents delimiter-based collisions — e.g. a cell_id containing `:`
/// cannot produce the same info string as a different (cell_id, layer) pair.
// ---------------------------------------------------------------------------
// Derivation functions
// ---------------------------------------------------------------------------
/// Derive a key for a specific partition.
///
/// The info string is length-prefixed: `len("partition") || "partition" || len(partition_id) || partition_id`.
///
/// # Errors
///
/// Returns `HexvaultError::InvalidPartitionId` if `partition_id` is empty.
/// Derive a key for a specific cell, layer, and context.
///
/// The info string is length-prefixed:
/// ```text
/// len(cell_id) || cell_id || len(layer_tag) || layer_tag || len(context_id) || context_id
/// ```
///
/// `context_id` is empty for Layer 0 (at-rest), an access policy ID for
/// Layer 1, and a session ID for Layer 2.
///
/// # Security properties
/// - HKDF is one-way: the derived key reveals nothing about the master key.
/// - Length-prefixed info strings prevent delimiter collisions.
/// - Different info strings produce statistically independent outputs.
/// - The output length is fixed at 256 bits (32 bytes).
///
/// # Errors
///
/// Returns `HexvaultError::InvalidCellId` if `cell_id` is empty.
pub