From ff81166cc7cb0b09ebaed7e05d38541a56ae7453 Mon Sep 17 00:00:00 2001 From: Vikram Dattu Date: Thu, 4 Jun 2026 21:07:44 +0530 Subject: [PATCH] fix(libsrtp): drop hand-authored CHANGELOG.md (auto-generated by bump commit) Signed-off-by: Vikram Dattu --- components/libsrtp/CHANGELOG.md | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 components/libsrtp/CHANGELOG.md diff --git a/components/libsrtp/CHANGELOG.md b/components/libsrtp/CHANGELOG.md deleted file mode 100644 index 4481005bc..000000000 --- a/components/libsrtp/CHANGELOG.md +++ /dev/null @@ -1,10 +0,0 @@ -# Changelog - -## [2.8.0](https://github.com/espressif/esp-protocols/commits/libsrtp-v2.8.0) - -### Features - -- First release. Tracks upstream cisco/libsrtp [`v2.8.0`](https://github.com/cisco/libsrtp/releases/tag/v2.8.0) (commit `24b3bf8`); component version follows upstream. -- Wraps libsrtp as an ESP-IDF component using mbedTLS for AES-ICM, AES-GCM and HMAC-SHA1. ESP-IDF's mbedTLS routes AES through the on-chip AES peripheral by default (`CONFIG_MBEDTLS_HARDWARE_AES=y`), so SRTP protect/unprotect leverages hardware crypto with no wrapper-side code. -- One small port-side delta in `port/crypto_kernel.c`: opts out of the AES-ICM-192 cipher registration when GCM is enabled (saves binary size; AES-CM-128 + AES-GCM cover all WebRTC SRTP suites). -- Embedded smoke test (`test_apps/`) and host-side AES-GCM-128 protect/unprotect roundtrip test (`host_test/`) included.