summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2022-09-07 20:19:50 +0800
committerGitHub <noreply@github.com>2022-09-07 08:19:50 -0400
commit3ff52182ba6e7f1a063079d48ed5c21616918d70 (patch)
treef0380492c683338b64265c006bf75996f0ddfeec /src
parent52d6f1a491f6ade379ace124b843ffba9fb4ab4f (diff)
downloadcryptography-38.0.1.tar.gz
Backport tlv fix, 38.0.1 bump (#7576)38.0.1
* fix parsing for CRLs with TLVs > 65535 bytes (#7575) * add CRL test vector with 9,999 revoked items * bump rust-asn1 * add large CRL test this tests CRLs larger than 65535 bytes in size. rust-asn1 supports up to 4GiB TLVs now, but we'll avoid putting a test vector that big for now * changelog and 38.0.1 bump
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/__about__.py2
-rw-r--r--src/rust/Cargo.lock8
-rw-r--r--src/rust/Cargo.toml2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py
index 24aeeac1d..96d8768c1 100644
--- a/src/cryptography/__about__.py
+++ b/src/cryptography/__about__.py
@@ -9,7 +9,7 @@ __all__ = [
"__copyright__",
]
-__version__ = "38.0.0"
+__version__ = "38.0.1"
__author__ = "The Python Cryptographic Authority and individual contributors"
__copyright__ = "Copyright 2013-2022 {}".format(__author__)
diff --git a/src/rust/Cargo.lock b/src/rust/Cargo.lock
index e1fd9558b..4a0ecfd58 100644
--- a/src/rust/Cargo.lock
+++ b/src/rust/Cargo.lock
@@ -25,9 +25,9 @@ dependencies = [
[[package]]
name = "asn1"
-version = "0.12.1"
+version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "570eb4740d127e98f0b6b1b93adf0d2ad054bee6272284fcc029323d902c3095"
+checksum = "22c27c85cd71c1bf4373c7c1aa752b73d2df799277c0930af16fffbf3444f210"
dependencies = [
"asn1_derive",
"chrono",
@@ -35,9 +35,9 @@ dependencies = [
[[package]]
name = "asn1_derive"
-version = "0.12.1"
+version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56792f155e38317e455b140f625c0e8593af8cb7b072842024c37aae22f087ea"
+checksum = "d48d1854a01241e8d22f8f5ae4e2dc332f66c5946e1772f5576886d83e18e1b7"
dependencies = [
"proc-macro2",
"quote",
diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml
index 271b29032..49e70a30f 100644
--- a/src/rust/Cargo.toml
+++ b/src/rust/Cargo.toml
@@ -8,7 +8,7 @@ publish = false
[dependencies]
once_cell = "1"
pyo3 = { version = "0.15.2" }
-asn1 = { version = "0.12.1", default-features = false, features = ["derive"] }
+asn1 = { version = "0.12.2", default-features = false, features = ["derive"] }
pem = "1.1"
chrono = { version = "0.4.22", default-features = false, features = ["alloc", "clock"] }
ouroboros = "0.15"