diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2022-10-15 10:01:55 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-10-15 21:33:48 +0200 |
commit | c5627b516bf8c355a5d652678ec5bf80471654fb (patch) | |
tree | c37a37b54cf36952502ca75c8fc8254f14fdc3fb /net-libs/libsrtp | |
parent | app-accessibility/speech-dispatcher: remove unused patches (diff) | |
download | gentoo-c5627b516bf8c355a5d652678ec5bf80471654fb.tar.gz gentoo-c5627b516bf8c355a5d652678ec5bf80471654fb.tar.bz2 gentoo-c5627b516bf8c355a5d652678ec5bf80471654fb.zip |
net-libs/libsrtp: remove unused patches
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/27794
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-libs/libsrtp')
-rw-r--r-- | net-libs/libsrtp/files/libsrtp-2.3.0-gcc-10.patch | 26 | ||||
-rw-r--r-- | net-libs/libsrtp/files/libsrtp-2.3.0-nss.patch | 12 | ||||
-rw-r--r-- | net-libs/libsrtp/files/libsrtp-2.3.0-rtp-header.patch | 24 |
3 files changed, 0 insertions, 62 deletions
diff --git a/net-libs/libsrtp/files/libsrtp-2.3.0-gcc-10.patch b/net-libs/libsrtp/files/libsrtp-2.3.0-gcc-10.patch deleted file mode 100644 index 67d4ad86d516..000000000000 --- a/net-libs/libsrtp/files/libsrtp-2.3.0-gcc-10.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff --git a/crypto/math/datatypes.c b/crypto/math/datatypes.c -index 001584c..4fcb396 100644 ---- a/crypto/math/datatypes.c -+++ b/crypto/math/datatypes.c -@@ -79,7 +79,7 @@ int octet_get_weight(uint8_t octet) - - /* the value MAX_PRINT_STRING_LEN is defined in datatypes.h */ - --char bit_string[MAX_PRINT_STRING_LEN]; -+static char bit_string[MAX_PRINT_STRING_LEN]; - - uint8_t srtp_nibble_to_hex_char(uint8_t nibble) - { -diff --git a/test/util.c b/test/util.c -index 2abc28e..c0f7614 100644 ---- a/test/util.c -+++ b/test/util.c -@@ -49,7 +49,7 @@ - #include <stdint.h> - - /* include space for null terminator */ --char bit_string[MAX_PRINT_STRING_LEN + 1]; -+static char bit_string[MAX_PRINT_STRING_LEN + 1]; - - static inline int hex_char_to_nibble(uint8_t c) - { diff --git a/net-libs/libsrtp/files/libsrtp-2.3.0-nss.patch b/net-libs/libsrtp/files/libsrtp-2.3.0-nss.patch deleted file mode 100644 index 6f71839e69da..000000000000 --- a/net-libs/libsrtp/files/libsrtp-2.3.0-nss.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/crypto/cipher/aes_gcm_nss.c b/crypto/cipher/aes_gcm_nss.c -index 54547cd..ecbba64 100644 ---- a/crypto/cipher/aes_gcm_nss.c -+++ b/crypto/cipher/aes_gcm_nss.c -@@ -284,6 +284,7 @@ static srtp_err_status_t srtp_aes_gcm_nss_do_crypto(void *cv, - - c->params.pIv = c->iv; - c->params.ulIvLen = GCM_IV_LEN; -+ c->params.ulIvBits = 8 * GCM_IV_LEN; - c->params.pAAD = c->aad; - c->params.ulAADLen = c->aad_size; - diff --git a/net-libs/libsrtp/files/libsrtp-2.3.0-rtp-header.patch b/net-libs/libsrtp/files/libsrtp-2.3.0-rtp-header.patch deleted file mode 100644 index 096b19e8f344..000000000000 --- a/net-libs/libsrtp/files/libsrtp-2.3.0-rtp-header.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 55299517f39e2e1a34df05c27cbc9898071ac9db Mon Sep 17 00:00:00 2001 -From: Lennart Grahl <lennart.grahl@gmail.com> -Date: Mon, 18 May 2020 18:01:08 +0200 -Subject: [PATCH] Fix two-byte RTP header extension encryption - -Also ignores the application bits as required by RFC 8285, sec 4.3 -Fixes #490 ---- - srtp/srtp.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/srtp/srtp.c b/srtp/srtp.c -index b45cee0f..176b01f0 100644 ---- a/srtp/srtp.c -+++ b/srtp/srtp.c -@@ -1423,7 +1423,7 @@ static srtp_err_status_t srtp_process_header_encryption( - xtn_hdr_data++; - } - } -- } else if ((ntohs(xtn_hdr->profile_specific) & 0x1fff) == 0x100) { -+ } else if ((ntohs(xtn_hdr->profile_specific) & 0xfff0) == 0x1000) { - /* RFC 5285, section 4.3. Two-Byte Header */ - while (xtn_hdr_data + 1 < xtn_hdr_end) { - uint8_t xid = *xtn_hdr_data; |