mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
930b556ff2
Changelog -Make mbedtls hmac less restrictive in line with RFC and library capabilities -Allow overriding stream list implementation -update min openssl version to 1.1.0 -Openssl 3 support for EVP MAC -Add android build to CI -add CIFuzz Github action to workflows -Add policy_set_aes_cm_192_xxx symbols to def file -Use current directions in stream update test -Call `set_aad` and `get_tag` in AEAD performance tests -Create alias for srtp2 as libSRTP::srtp2 -Remove compatibility code for legacy OpenSSL to fix LibreSSL build -Export CMake Targets -Avoid initializing local char table when converting nibble to hex -EVP_CIPHER_CTX_cleanup() is deprecated in OpenSSL 1.1.0 -Correct null cipher key sizes and be more defensive -Include directory should point to 'include' not to 'include/srtp2' -Count blocks instead of bytes in AES-ICM limit computation -Rtp decoder support ssrc and roc -Use a full-length key even with null ciphers -Fix set ROC functionality with gcm Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
916 B
BlitzBasic
21 lines
916 B
BlitzBasic
SUMMARY = "Library implementing Secure RTP (RFC 3711)"
|
|
DESCRIPTION = "This package provides an implementation of the Secure Real-time Transport Protocol (SRTP), \
|
|
the Universal Security Transform (UST), and a supporting cryptographic kernel. The SRTP API \
|
|
is documented in include/srtp.h, and the library is in libsrtp2.a (after compilation)."
|
|
HOMEPAGE = "https://github.com/cisco/libsrtp"
|
|
BUGTRACKER = "https://github.com/cisco/libsrtp/issues"
|
|
SECTION = "libs"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2909fcf6f09ffff8430463d91c08c4e1"
|
|
|
|
SRC_URI = "git://github.com/cisco/libsrtp.git;branch=main;protocol=https"
|
|
SRCREV = "a566a9cfcd619e8327784aa7cff4a1276dc1e895"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
PACKAGECONFIG ?= ""
|
|
PACKAGECONFIG[nss] = "-Dcrypto-library=nss,, nss,,, openssl"
|
|
PACKAGECONFIG[openssl] = "-Dcrypto-library=openssl,, openssl,,, nss"
|
|
|
|
inherit meson pkgconfig
|