You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[DTLS] Use RSA_PKCS1_1024_8192_SHA256_FOR_LEGACY_USE_ONLY for short signatures (#342)
Add support for weaker signatures for DTLS behind a flag. With this, RSA keys between 1024 and 8192 bits can be negotiated and use for DTLS by opting in. Without opting in the minimum remains 2048 bits
Copy file name to clipboardExpand all lines: dtls/CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
## Unreleased
4
4
5
+
* Added support for insecure/deprecated signature verification algorithms [#342](https://github.com/webrtc-rs/webrtc/pull/342) by [@chuigda](https://github.com/chuigda).
6
+
5
7
## v0.7.0
6
8
7
9
* Increased minimum support rust version to `1.60.0`.
Copy file name to clipboardExpand all lines: webrtc/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ directions that should not send. [#316](https://github.com/webrtc-rs/webrtc/pull
12
12
* Add support for a mime type "audio/telephone-event" (rfc4733) [#322](https://github.com/webrtc-rs/webrtc/pull/322)
13
13
* Fixed a panic that would sometimes happen when collecting stats. [#327](https://github.com/webrtc-rs/webrtc/pull/327) by [@k0nserv](https://github.com/k0nserv).
14
14
* Added new extension marshaller/unmarshaller for VideoOrientation, and made marshallers serializable via serde [#331](https://github.com/webrtc-rs/webrtc/pull/331)[#332](https://github.com/webrtc-rs/webrtc/pull/332)
15
+
* Added support for insecure/deprecated signature verification algorithms [#342](https://github.com/webrtc-rs/webrtc/pull/342).
15
16
* Updated minimum rust version to `1.60.0`
16
17
* Added a new `write_rtp_with_extensions` method to `TrackLocalStaticSample` and `TrackLocalStaticRTP`. [#336](https://github.com/webrtc-rs/webrtc/pull/336) by [@k0nserv](https://github.com/k0nserv).
17
18
* Added a new `sample_writer` helper to `TrackLocalStaticSample`. [#336](https://github.com/webrtc-rs/webrtc/pull/336) by [@k0nserv](https://github.com/k0nserv).
0 commit comments