Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
0fc38bba
Commit
0fc38bba
authored
Jul 26, 2022
by
Xiaofeng Wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
避免对外传递 srtp 依赖
parent
388bf718
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
36 行增加
和
52 行删除
+36
-52
webrtc/SrtpSession.cpp
+0
-0
webrtc/SrtpSession.hpp
+33
-52
webrtc/WebRtcTransport.cpp
+3
-0
没有找到文件。
webrtc/SrtpSession.cpp
查看文件 @
0fc38bba
差异被折叠。
点击展开。
webrtc/SrtpSession.hpp
查看文件 @
0fc38bba
...
...
@@ -20,64 +20,45 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define MS_RTC_SRTP_SESSION_HPP
#include "Utils.hpp"
#include <srtp2/srtp.h>
#include <vector>
#include <memory>
namespace
RTC
{
class
DepLibSRTP
:
public
std
::
enable_shared_from_this
<
DepLibSRTP
>
{
public
:
using
Ptr
=
std
::
shared_ptr
<
DepLibSRTP
>
;
~
DepLibSRTP
();
typedef
struct
srtp_ctx_t_
*
srtp_t
;
namespace
RTC
{
static
bool
IsError
(
srtp_err_status_t
code
);
static
const
char
*
GetErrorString
(
srtp_err_status_t
code
);
static
DepLibSRTP
&
Instance
();
class
DepLibSRTP
;
private
:
DepLibSRTP
();
class
SrtpSession
{
public
:
enum
class
CryptoSuite
{
NONE
=
0
,
AES_CM_128_HMAC_SHA1_80
=
1
,
AES_CM_128_HMAC_SHA1_32
,
AEAD_AES_256_GCM
,
AEAD_AES_128_GCM
};
class
SrtpSession
{
public
:
enum
class
CryptoSuite
{
NONE
=
0
,
AES_CM_128_HMAC_SHA1_80
=
1
,
AES_CM_128_HMAC_SHA1_32
,
AEAD_AES_256_GCM
,
AEAD_AES_128_GCM
};
public
:
enum
class
Type
{
INBOUND
=
1
,
OUTBOUND
};
public
:
SrtpSession
(
Type
type
,
CryptoSuite
cryptoSuite
,
uint8_t
*
key
,
size_t
keyLen
);
~
SrtpSession
();
public
:
bool
EncryptRtp
(
uint8_t
*
data
,
int
*
len
);
bool
DecryptSrtp
(
uint8_t
*
data
,
int
*
len
);
bool
EncryptRtcp
(
uint8_t
*
data
,
int
*
len
);
bool
DecryptSrtcp
(
uint8_t
*
data
,
int
*
len
);
void
RemoveStream
(
uint32_t
ssrc
)
{
srtp_remove_stream
(
this
->
session
,
uint32_t
{
htonl
(
ssrc
)
});
}
private
:
// Allocated by this.
srtp_t
session
{
nullptr
};
DepLibSRTP
::
Ptr
_env
;
};
public
:
enum
class
Type
{
INBOUND
=
1
,
OUTBOUND
};
public
:
SrtpSession
(
Type
type
,
CryptoSuite
cryptoSuite
,
uint8_t
*
key
,
size_t
keyLen
);
~
SrtpSession
();
public
:
bool
EncryptRtp
(
uint8_t
*
data
,
int
*
len
);
bool
DecryptSrtp
(
uint8_t
*
data
,
int
*
len
);
bool
EncryptRtcp
(
uint8_t
*
data
,
int
*
len
);
bool
DecryptSrtcp
(
uint8_t
*
data
,
int
*
len
);
void
RemoveStream
(
uint32_t
ssrc
);
private
:
// Allocated by this.
srtp_t
session
{
nullptr
};
std
::
shared_ptr
<
DepLibSRTP
>
_env
;
};
}
// namespace RTC
#endif
webrtc/WebRtcTransport.cpp
查看文件 @
0fc38bba
...
...
@@ -13,6 +13,9 @@
#include "Rtcp/RtcpFCI.h"
#include "RtpExt.h"
#include "Rtsp/RtpReceiver.h"
#include <srtp2/srtp.h>
#include <iostream>
#define RTP_SSRC_OFFSET 1
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论