Skip to content

Commit 0fe4a4a

Browse files
committed
fix X509Extension __str__() method for unknow extension types
1 parent 81f9652 commit 0fe4a4a

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.rst

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ Deprecations:
2525
Changes:
2626
^^^^^^^^
2727

28+
- Fix X509Extension __str__() method for unknown extension types
29+
`#1239 <https://github.com/pyca/pyopenssl/pull/1239>`_.
30+
2831
23.2.0 (2023-05-30)
2932
-------------------
3033

src/OpenSSL/crypto.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@
108108
TYPE_DH: int = _lib.EVP_PKEY_DH
109109
TYPE_EC: int = _lib.EVP_PKEY_EC
110110

111+
X509V3_EXT_ERROR_UNKNOWN = 1 << 16
112+
111113

112114
class Error(Exception):
113115
"""
@@ -890,7 +892,9 @@ def __str__(self) -> str:
890892
return self._subjectAltNameString()
891893

892894
bio = _new_mem_buf()
893-
print_result = _lib.X509V3_EXT_print(bio, self._extension, 0, 0)
895+
print_result = _lib.X509V3_EXT_print(
896+
bio, self._extension, X509V3_EXT_ERROR_UNKNOWN, 0
897+
)
894898
_openssl_assert(print_result != 0)
895899

896900
return _bio_to_string(bio).decode("utf-8")

tests/test_crypto.py

+4
Original file line numberDiff line numberDiff line change
@@ -1632,6 +1632,10 @@ def test_undef_oid(self):
16321632
).get_short_name()
16331633
== b"UNDEF"
16341634
)
1635+
assert (
1636+
str(X509Extension(b"1.2.3.4.5.6.7", False, b"DER:05:00"))
1637+
== "<Not Supported>"
1638+
)
16351639

16361640
def test_add_extensions_wrong_args(self):
16371641
"""

0 commit comments

Comments
 (0)