mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-17 15:47:53 +01:00

This change adds a new subcategory to the public native webrtc::CryptoOptions structure: webrtc::CryptoOptions::Frame. This new structure has a single off by default property: crypto_options.frame.require_frame_encryption. This new flag if set prevents RtpSenders from sending outgoing payloads unless a frame_encryptor_ is attached and prevents RtpReceivers from receiving incoming payloads unless a frame_decryptor_ is attached. This option is important to enforce no unencrypted data can ever leave the device or be received. I have also attached bindings for Java and Objective-C. I have implemented this functionality for E2EE audio but not E2EE video since the changes are still in review. Bug: webrtc:9681 Change-Id: Ie184711190e0cdf5ac781f69e9489ceec904736f Reviewed-on: https://webrtc-review.googlesource.com/c/105540 Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Steve Anton <steveanton@webrtc.org> Reviewed-by: Oskar Sundbom <ossu@webrtc.org> Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> Reviewed-by: Kári Helgason <kthelgason@webrtc.org> Commit-Queue: Benjamin Wright <benwright@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25238}
78 lines
2.6 KiB
C++
78 lines
2.6 KiB
C++
/*
|
|
* Copyright 2018 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "api/crypto/cryptooptions.h"
|
|
#include "rtc_base/sslstreamadapter.h"
|
|
|
|
namespace webrtc {
|
|
|
|
CryptoOptions::CryptoOptions() {}
|
|
|
|
CryptoOptions::CryptoOptions(const CryptoOptions& other) {
|
|
srtp = other.srtp;
|
|
sframe = other.sframe;
|
|
}
|
|
|
|
CryptoOptions::~CryptoOptions() {}
|
|
|
|
// static
|
|
CryptoOptions CryptoOptions::NoGcm() {
|
|
CryptoOptions options;
|
|
options.srtp.enable_gcm_crypto_suites = false;
|
|
return options;
|
|
}
|
|
|
|
std::vector<int> CryptoOptions::GetSupportedDtlsSrtpCryptoSuites() const {
|
|
std::vector<int> crypto_suites;
|
|
if (srtp.enable_gcm_crypto_suites) {
|
|
crypto_suites.push_back(rtc::SRTP_AEAD_AES_256_GCM);
|
|
crypto_suites.push_back(rtc::SRTP_AEAD_AES_128_GCM);
|
|
}
|
|
// Note: SRTP_AES128_CM_SHA1_80 is what is required to be supported (by
|
|
// draft-ietf-rtcweb-security-arch), but SRTP_AES128_CM_SHA1_32 is allowed as
|
|
// well, and saves a few bytes per packet if it ends up selected.
|
|
// As the cipher suite is potentially insecure, it will only be used if
|
|
// enabled by both peers.
|
|
if (srtp.enable_aes128_sha1_32_crypto_cipher) {
|
|
crypto_suites.push_back(rtc::SRTP_AES128_CM_SHA1_32);
|
|
}
|
|
crypto_suites.push_back(rtc::SRTP_AES128_CM_SHA1_80);
|
|
return crypto_suites;
|
|
}
|
|
|
|
bool CryptoOptions::operator==(const CryptoOptions& other) const {
|
|
struct data_being_tested_for_equality {
|
|
struct Srtp {
|
|
bool enable_gcm_crypto_suites;
|
|
bool enable_aes128_sha1_32_crypto_cipher;
|
|
bool enable_encrypted_rtp_header_extensions;
|
|
} srtp;
|
|
struct SFrame {
|
|
bool require_frame_encryption;
|
|
} sframe;
|
|
};
|
|
static_assert(sizeof(data_being_tested_for_equality) == sizeof(*this),
|
|
"Did you add something to CryptoOptions and forget to "
|
|
"update operator==?");
|
|
|
|
return srtp.enable_gcm_crypto_suites == other.srtp.enable_gcm_crypto_suites &&
|
|
srtp.enable_aes128_sha1_32_crypto_cipher ==
|
|
other.srtp.enable_aes128_sha1_32_crypto_cipher &&
|
|
srtp.enable_encrypted_rtp_header_extensions ==
|
|
other.srtp.enable_encrypted_rtp_header_extensions &&
|
|
sframe.require_frame_encryption ==
|
|
other.sframe.require_frame_encryption;
|
|
}
|
|
|
|
bool CryptoOptions::operator!=(const CryptoOptions& other) const {
|
|
return !(*this == other);
|
|
}
|
|
|
|
} // namespace webrtc
|