mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 14:20:45 +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}
44 lines
1.2 KiB
Objective-C
44 lines
1.2 KiB
Objective-C
/*
|
|
* Copyright 2017 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.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "RTCMacros.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
RTC_OBJC_EXPORT
|
|
@interface RTCPeerConnectionFactoryOptions : NSObject
|
|
|
|
@property(nonatomic, assign) BOOL disableEncryption;
|
|
|
|
@property(nonatomic, assign) BOOL disableNetworkMonitor;
|
|
|
|
@property(nonatomic, assign) BOOL ignoreLoopbackNetworkAdapter;
|
|
|
|
@property(nonatomic, assign) BOOL ignoreVPNNetworkAdapter;
|
|
|
|
@property(nonatomic, assign) BOOL ignoreCellularNetworkAdapter;
|
|
|
|
@property(nonatomic, assign) BOOL ignoreWiFiNetworkAdapter;
|
|
|
|
@property(nonatomic, assign) BOOL ignoreEthernetNetworkAdapter;
|
|
|
|
@property(nonatomic, assign) BOOL enableAes128Sha1_32CryptoCipher;
|
|
|
|
@property(nonatomic, assign) BOOL enableGcmCryptoSuites;
|
|
|
|
@property(nonatomic, assign) BOOL requireFrameEncryption;
|
|
|
|
- (instancetype)init NS_DESIGNATED_INITIALIZER;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|