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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
//! Miscellaneous KDF functions backed by wolfCrypt.
//!
//! This module wraps wolfCrypt's stateless KDF functions that do not fit
//! into the HKDF or PBKDF2 modules:
//!
//! - **TLS PRF** ([`tls_prf`]) — the pseudo-random function used in TLS 1.2
//! key derivation, gated on `WOLFSSL_HAVE_PRF`.
//! - **SSH KDF** ([`ssh_kdf`]) — key derivation per RFC 4253, gated on
//! `WOLFSSL_WOLFSSH`.
//! - **SRTP KDF** ([`srtp_kdf`]) — key derivation per RFC 3711 section 4.3.1,
//! gated on `WC_SRTP_KDF`.
//! - **TLS 1.3 HKDF** ([`tls13_hkdf_extract`], [`tls13_hkdf_expand_label`]) —
//! HKDF-Extract and HKDF-Expand-Label per RFC 8446 section 7.1, gated on
//! `HAVE_HKDF`.
//! - **PKCS#12 PBKDF** ([`pkcs12_pbkdf`]) — password-based key derivation per
//! RFC 7292 appendix B.
//!
//! All functions are stateless (no structs) and return `Result<(), WolfCryptError>`.
use crate;
use c_int;
// ======================================================================
// TLS PRF (wc_PRF)
// ======================================================================
/// MAC algorithm constants for [`tls_prf`], matching wolfSSL's
/// `wc_MACAlgorithm` enum in `wolfssl/wolfcrypt/hash.h`.
///
/// These are **not** `wc_HashType` values — `wc_PRF` uses the TLS MAC
/// algorithm enum internally.
pub const SHA256_MAC: i32 = 4;
/// See [`SHA256_MAC`].
pub const SHA384_MAC: i32 = 5;
/// See [`SHA256_MAC`].
pub const SHA512_MAC: i32 = 6;
/// Compute the TLS PRF (pseudo-random function).
///
/// This is the raw PRF used inside TLS 1.2 key derivation. For most
/// purposes you want [`tls12_prf`] instead, which prepends the label.
///
/// `hash_type` must be one of [`SHA256_MAC`], [`SHA384_MAC`], or
/// [`SHA512_MAC`].
///
/// # Errors
///
/// Returns an error if wolfCrypt rejects the parameters (unsupported
/// hash type, output too large for the PRF, etc.).
/// Compute the TLS 1.2 PRF with an explicit label.
///
/// This wraps `wc_PRF_TLS`, which concatenates the label and seed
/// internally and uses SHA-256 or better.
///
/// `hash_type` is a `wc_HashType` constant (e.g.
/// `wolfcrypt_rs::WC_HASH_TYPE_SHA256`).
///
/// # Errors
///
/// Returns an error if wolfCrypt rejects the parameters.
// ======================================================================
// SSH KDF (wc_SSH_KDF)
// ======================================================================
/// Derive a key for SSH per RFC 4253 section 7.2.
///
/// `hash_type` is a `wc_HashType` constant (e.g.
/// `wolfcrypt_rs::WC_HASH_TYPE_SHA256`).
///
/// `key` (K) and `h` are the shared secret and exchange hash from the
/// SSH key exchange. `session_id` is the session identifier.
/// `label` is a single byte identifying the key type (`b'A'` through `b'F'`).
///
/// Derived key material is written into `out`.
///
/// # Errors
///
/// Returns an error if wolfCrypt rejects the parameters.
// TODO: This requires WOLFSSL_WOLFSSH to be defined in user_settings.h.
// The wolfssl_wolfssh cfg flag is emitted when that define is present.
// ======================================================================
// SRTP KDF (wc_SRTP_KDF)
// ======================================================================
/// Derive SRTP session keys per RFC 3711 section 4.3.1.
///
/// `key` is the master key, `salt` is the master salt.
/// `kdr_idx` is the key derivation rate index (-1 for no key derivation rate).
/// `index` is the 48-bit SRTP packet index (6 bytes).
///
/// Derived keys are written into `cipher_key`, `auth_key`, and `salt_key`.
///
/// # Errors
///
/// Returns an error if wolfCrypt rejects the parameters.
// TODO: This requires WC_SRTP_KDF to be defined in user_settings.h.
// The wolfssl_srtp_kdf cfg flag is emitted when that define is present.
// ======================================================================
// TLS 1.3 HKDF (wc_Tls13_HKDF_Extract / wc_Tls13_HKDF_Expand_Label)
// ======================================================================
/// TLS 1.3 HKDF-Extract per RFC 8446 section 7.1.
///
/// Derives a pseudorandom key (PRK) from input key material and salt
/// using HMAC. The output length depends on the digest: 32 bytes for
/// SHA-256, 48 for SHA-384.
///
/// # Parameters
///
/// - `salt`: HMAC salt. Pass `&[]` for no salt (wolfSSL will use a
/// zero-filled salt of digest length internally).
/// - `ikm`: Input key material. Pass `&[]` for the "no PSK" case in
/// TLS 1.3 (wolfSSL will use zero-filled IKM of digest length).
/// - `digest`: Hash algorithm — use a `WC_HASH_TYPE_*` constant
/// (e.g. `wolfcrypt_rs::WC_HASH_TYPE_SHA256`).
/// - `prk`: Output buffer, must be at least the digest output size.
///
/// # Errors
///
/// Returns an error if wolfCrypt rejects the parameters (unsupported
/// digest, output buffer too small, etc.).
/// TLS 1.3 HKDF-Expand-Label per RFC 8446 section 7.1.
///
/// Derives keying material using the expand-label construction:
///
/// ```text
/// HKDF-Expand-Label(Secret, Label, Context, Length)
/// ```
///
/// The `label` is prefixed with `protocol` (typically `b"tls13 "`)
/// internally by wolfSSL's implementation.
///
/// # Parameters
///
/// - `prk`: Pseudorandom key (output of [`tls13_hkdf_extract`]).
/// - `protocol`: Protocol label prefix (e.g. `b"tls13 "`).
/// - `label`: Specific label (e.g. `b"derived"`, `b"c hs traffic"`).
/// - `info`: Context hash (transcript hash, or `&[]` for none).
/// - `digest`: Hash algorithm — use a `WC_HASH_TYPE_*` constant.
/// - `okm`: Output buffer (length determines how many bytes are derived).
///
/// # Errors
///
/// Returns an error if wolfCrypt rejects the parameters.
// ======================================================================
// PKCS#12 PBKDF (wc_PKCS12_PBKDF)
// ======================================================================
/// PKCS#12 purpose ID for key derivation.
pub const PKCS12_KEY_ID: i32 = 1;
/// PKCS#12 purpose ID for IV derivation.
pub const PKCS12_IV_ID: i32 = 2;
/// PKCS#12 purpose ID for MAC key derivation.
pub const PKCS12_MAC_ID: i32 = 3;
/// Derive key material using the PKCS#12 PBKDF (RFC 7292 appendix B).
///
/// `password` is the password bytes (typically UTF-16BE encoded per the
/// PKCS#12 spec, but wolfCrypt accepts raw bytes).
/// `salt` is the salt value.
/// `iterations` is the iteration count (must be positive).
/// `id` identifies the purpose: [`PKCS12_KEY_ID`], [`PKCS12_IV_ID`], or
/// [`PKCS12_MAC_ID`].
/// `hash_type` is a `wc_HashType` constant (e.g.
/// `wolfcrypt_rs::WC_HASH_TYPE_SHA256`).
///
/// Derived key material is written into `out`.
///
/// # Errors
///
/// Returns an error if wolfCrypt rejects the parameters (zero iterations,
/// unsupported hash type, etc.).