Driver: Remove legacy encryption algorithms.

There is probably some followup cleanup which can be done, but keeping
the general structure intact might help if there are future changes on
available (non-E2EE) algorithms.
This commit is contained in:
Kyle Simpson
2025-02-21 16:02:16 +00:00
parent 47cf0b27eb
commit f05b262dfe
8 changed files with 44 additions and 273 deletions

View File

@@ -177,7 +177,7 @@ impl UdpRx {
let rtp = rtp.to_immutable();
let (rtp_body_start, rtp_body_tail, decrypted) = packet_data.unwrap_or_else(|| {
(
crypto_mode.payload_prefix_len2(),
crypto_mode.payload_prefix_len(),
crypto_mode.payload_suffix_len(),
false,
)
@@ -222,7 +222,7 @@ impl UdpRx {
let (start, tail) = packet_data.unwrap_or_else(|| {
(
crypto_mode.payload_prefix_len2(),
crypto_mode.payload_prefix_len(),
crypto_mode.payload_suffix_len(),
)
});