Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ click==8.0.3
# via black
coverage==7.1.0
# via -r requirements-dev.in
cryptography==39.0.2
cryptography==41.0.2
# via
# -c requirements.txt
# secretstorage
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Note: To install a package from a Git VCS repository, see the following example:
# git+https://github.com/example/example.git@example-vcs-ref#egg=example-pkg[foo,bar]==1.42.3

cryptography==39.0.2
cryptography==41.0.2
defusedxml==0.7.1
Django>=2.2.24
djangorestframework>=3.10.3,<3.15
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ certifi==2022.6.15
# via signxml
cffi==1.15.1
# via cryptography
cryptography==39.0.2
cryptography==41.0.2
# via
# -r requirements.in
# pyopenssl
Expand Down
2 changes: 1 addition & 1 deletion tests/test_libs_crypto_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def test_load_der_x509_cert_ok_cert_real_dte_1(self) -> None:
some_microsoft_extension_oid = oid.ObjectIdentifier("1.3.6.1.4.1.311.21.7")
some_microsoft_ext = cert_extensions.get_extension_for_oid(some_microsoft_extension_oid)
self.assertEqual(some_microsoft_ext.critical, False)
self.assertTrue(isinstance(some_microsoft_ext.value.value, bytes))
self.assertTrue(isinstance(some_microsoft_ext.value.public_bytes(), bytes))

def test_load_der_x509_cert_ok_cert_real_dte_3(self) -> None:
cert_der_bytes = utils.read_test_file_bytes(
Expand Down