-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3216 from gilles-peskine-arm/changelog-20200421-d…
…evelopment Add missing changelog entries for PRs since 2.22.0
- Loading branch information
Showing
5 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Features | ||
* New functions in the error module return constant strings for | ||
high- and low-level error codes, complementing mbedtls_strerror() | ||
which constructs a string for any error code, including compound | ||
ones, but requires a writable buffer. Contributed by Gaurav Aggarwal | ||
in #3176. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Bugfix | ||
* Fix undefined behavior in X.509 certificate parsing if the | ||
pathLenConstraint basic constraint value is equal to INT_MAX. | ||
The actual effect with almost every compiler is the intended | ||
behavior, so this is unlikely to be exploitable anywhere. #3192 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Changes | ||
* Combine identical cases in switch statements in md.c. Contributed | ||
by irwir in #3208. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Features | ||
* The new utility programs/ssl/ssl_context_info prints a human-readable | ||
dump of an SSL context saved with mbedtls_ssl_context_save(). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Changes | ||
* Simplify a bounds check in ssl_write_certificate_request(). Contributed | ||
by irwir in #3150. |