概述
mbed TLS(PolarSSL)是TLS和SSL协议的实现,和openssl相比,mbed TLS更适合小型嵌入式设备,性能也优于openssl,metaRTC5.0新版本支持openssl和mbed TLS,metaRTC实现了对mbedtls3.0版本的支持。
下载源码
GitHub - Mbed-TLS/mbedtls: An open source, portable, easy to use, readable and flexible SSL libraryAn open source, portable, easy to use, readable and flexible SSL library - GitHub - Mbed-TLS/mbedtls: An open source, portable, easy to use, readable and flexible SSL libraryhttps://github.com/Mbed-TLS/mbedtlshttps://github.com/metartc/metaRTChttps://github.com/metartc/metaRTCmetaRTC: metaRTC为纯C版本的webrtc 可与谷歌webrtc类库互通,支持Webrtc/SRT/RTMPhttps://gitee.com/metartc/metaRTC
mbedtls3.0编译
修改mbedtls/mbedtls_config.h参数
去掉#define MBEDTLS_SSL_DTLS_SRTP注释使其生效
mkdir build
cd build
cmake ..
make
srtp2编译
cmake文件CMakeLists.txt中修改为ON或者编译加参数使其支持mbedtls
mkdir build
cd build
cmake ..
make
metaRTC编译
修改参数yang_config.h
Yang_Using_Openssl 设为1使用openssl,设为0使用mbedtls
在qt demo工程中注释openssl,取消mbedtls注释
在cmake工程中,设置mbedtls静态库链接