-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
correct buffer overflows cause by integer overflow in openssl (#5747)
* correct buffer overflows cause by integer overflow in openssl frustratingly, there is no test for this -- that's because testing this requires allocating more memory than is available in CI. fixes #5615. * backport CI fixes * another CI backport
- Loading branch information
Showing
8 changed files
with
21 additions
and
12 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
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
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
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
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
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 |
---|---|---|
|
@@ -22,10 +22,10 @@ | |
) | ||
__uri__ = "https://github.com/pyca/cryptography" | ||
|
||
__version__ = "3.3.1" | ||
__version__ = "3.3.2" | ||
|
||
__author__ = "The cryptography developers" | ||
__email__ = "[email protected]" | ||
|
||
__license__ = "BSD or Apache License, Version 2.0" | ||
__copyright__ = "Copyright 2013-2020 {}".format(__author__) | ||
__copyright__ = "Copyright 2013-2021 {}".format(__author__) |
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
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 |
---|---|---|
|
@@ -20,10 +20,10 @@ | |
|
||
__uri__ = "https://github.com/pyca/cryptography" | ||
|
||
__version__ = "3.3.1" | ||
__version__ = "3.3.2" | ||
|
||
__author__ = "The cryptography developers" | ||
__email__ = "[email protected]" | ||
|
||
__license__ = "BSD or Apache License, Version 2.0" | ||
__copyright__ = "Copyright 2013-2020 %s" % __author__ | ||
__copyright__ = "Copyright 2013-2021 %s" % __author__ |