2021-04-09 20:42:36 +08:00
|
|
|
|
/**
|
|
|
|
|
ISC License
|
|
|
|
|
|
|
|
|
|
Copyright © 2015, Iñaki Baz Castillo <ibc@aliax.net>
|
|
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef MS_RTC_SRTP_SESSION_HPP
|
2021-03-24 16:52:41 +08:00
|
|
|
|
#define MS_RTC_SRTP_SESSION_HPP
|
|
|
|
|
|
2021-03-27 09:13:10 +08:00
|
|
|
|
#include "Utils.hpp"
|
2022-07-26 00:04:03 +08:00
|
|
|
|
|
2021-03-27 09:38:13 +08:00
|
|
|
|
#include <memory>
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
2022-07-26 00:04:03 +08:00
|
|
|
|
typedef struct srtp_ctx_t_ *srtp_t;
|
|
|
|
|
|
|
|
|
|
namespace RTC {
|
2021-03-27 09:38:13 +08:00
|
|
|
|
|
2022-07-26 00:04:03 +08:00
|
|
|
|
class DepLibSRTP;
|
2021-03-26 11:07:03 +08:00
|
|
|
|
|
2022-07-26 00:04:03 +08:00
|
|
|
|
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
|
2021-03-26 11:07:03 +08:00
|
|
|
|
};
|
|
|
|
|
|
2022-07-26 00:04:03 +08:00
|
|
|
|
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;
|
|
|
|
|
};
|
|
|
|
|
|
2021-03-26 11:07:03 +08:00
|
|
|
|
} // namespace RTC
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
|
|
|
|
#endif
|