Changeset 283315 in webkit
- Timestamp:
- Sep 30, 2021, 9:05:34 AM (5 years ago)
- Location:
- trunk/Source
- Files:
-
- 6 edited
-
ThirdParty/libwebrtc/ChangeLog (modified) (1 diff)
-
ThirdParty/libwebrtc/Configurations/libwebrtc.iOS.exp (modified) (1 diff)
-
ThirdParty/libwebrtc/Configurations/libwebrtc.iOSsim.exp (modified) (1 diff)
-
ThirdParty/libwebrtc/Configurations/libwebrtc.mac.exp (modified) (1 diff)
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/ThirdParty/libwebrtc/ChangeLog
r283174 r283315 1 2021-09-30 Youenn Fablet <youenn@apple.com> 2 3 Support AES GCM ciphers in WebRTC 4 https://bugs.webkit.org/show_bug.cgi?id=214402 5 <rdar://problem/65700381> 6 7 Reviewed by Eric Carlson. 8 9 * Configurations/libwebrtc.iOS.exp: 10 * Configurations/libwebrtc.iOSsim.exp: 11 * Configurations/libwebrtc.mac.exp: 12 1 13 2021-09-28 Alex Christensen <achristensen@webkit.org> 2 14 -
trunk/Source/ThirdParty/libwebrtc/Configurations/libwebrtc.iOS.exp
r282831 r283315 328 328 __ZN6webrtc24SctpTransportInformationD1Ev 329 329 __ZNK3rtc9IPAddressneERKS0_ 330 __ZN6webrtc13CryptoOptionsC1Ev -
trunk/Source/ThirdParty/libwebrtc/Configurations/libwebrtc.iOSsim.exp
r282831 r283315 328 328 __ZN6webrtc24SctpTransportInformationD1Ev 329 329 __ZNK3rtc9IPAddressneERKS0_ 330 __ZN6webrtc13CryptoOptionsC1Ev -
trunk/Source/ThirdParty/libwebrtc/Configurations/libwebrtc.mac.exp
r282831 r283315 328 328 __ZN6webrtc24SctpTransportInformationD1Ev 329 329 __ZNK3rtc9IPAddressneERKS0_ 330 __ZN6webrtc13CryptoOptionsC1Ev -
trunk/Source/WebCore/ChangeLog
r283314 r283315 1 2021-09-30 Youenn Fablet <youenn@apple.com> 2 3 Support AES GCM ciphers in WebRTC 4 https://bugs.webkit.org/show_bug.cgi?id=214402 5 <rdar://problem/65700381> 6 7 Reviewed by Eric Carlson. 8 9 Enable GCM ciphers in WebRTC as done by Chrome. 10 The default ciphers remain the same so use of these ciphers is opt-in by SFUs. 11 12 Manually tested. 13 14 * Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.cpp: 15 (WebCore::LibWebRTCMediaEndpoint::setConfiguration): 16 1 17 2021-09-30 Alan Bujtas <zalan@apple.com> 2 18 -
trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.cpp
r282860 r283315 93 93 { 94 94 configuration.sdp_semantics = webrtc::SdpSemantics::kUnifiedPlan; 95 configuration.crypto_options = webrtc::CryptoOptions { }; 96 configuration.crypto_options->srtp.enable_gcm_crypto_suites = true; 95 97 96 98 if (!m_backend) {
Note:
See TracChangeset
for help on using the changeset viewer.