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
//! SFrame (RFC 9605) key-epoch forwarding seam.
//!
//! The SFU does not encrypt or decrypt payloads — SFrame encryption is
//! frame-level and end-to-end (publisher ↔ subscriber). This module provides
//! the [`KeyEpoch`] newtype for forwarding the key-epoch RTP header extension
//! so application code can route key distribution independently of the SFU
//! forwarding path.
/// The key-epoch value carried in the SFrame RTP header extension.
///
/// Maps to the `KID` (key identifier) field in SFrame (RFC 9605 §4.2).
/// Increment on each group key rotation. Receivers use this to select the
/// correct decryption key.
;