mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
Bump for 42.0.4 release (#10445)
This commit is contained in:
parent
aaa2dd06ed
commit
fe18470f7d
5 changed files with 7 additions and 4 deletions
|
|
@ -6,6 +6,9 @@ Changelog
|
|||
42.0.4 - 2024-02-20
|
||||
~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
* Fixed a null-pointer-dereference and segfault that could occur when creating
|
||||
a PKCS#12 bundle. Credit to **Alexander-Programming** for reporting the
|
||||
issue. **CVE-2024-26130**
|
||||
* Fixed ASN.1 encoding for PKCS7/SMIME signed messages. The fields ``SMIMECapabilities``
|
||||
and ``SignatureAlgorithmIdentifier`` should now be correctly encoded according to the
|
||||
definitions in :rfc:`2633` :rfc:`3370`.
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "cryptography"
|
||||
version = "42.0.3"
|
||||
version = "42.0.4"
|
||||
authors = [
|
||||
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ __all__ = [
|
|||
"__copyright__",
|
||||
]
|
||||
|
||||
__version__ = "42.0.3"
|
||||
__version__ = "42.0.4"
|
||||
|
||||
|
||||
__author__ = "The Python Cryptographic Authority and individual contributors"
|
||||
|
|
|
|||
|
|
@ -6,4 +6,4 @@ __all__ = [
|
|||
"__version__",
|
||||
]
|
||||
|
||||
__version__ = "42.0.3"
|
||||
__version__ = "42.0.4"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
|
|||
|
||||
[project]
|
||||
name = "cryptography_vectors"
|
||||
version = "42.0.3"
|
||||
version = "42.0.4"
|
||||
authors = [
|
||||
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue