diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2022-12-29 16:15:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-29 22:15:18 +0100 |
commit | 30529952a2ce5c9621a69e46cd3863f6e2aab05c (patch) | |
tree | 4149281b0fced9bd562e4b115d037d4d527fd26d /src | |
parent | d2f0aec1033181ab2f256e78915cdfdccc31b977 (diff) | |
download | pyopenssl-git-30529952a2ce5c9621a69e46cd3863f6e2aab05c.tar.gz |
fixes #1173 (#1174)
* fixes #1173
make the x509extension docs more clear
* Update crypto.py
Diffstat (limited to 'src')
-rw-r--r-- | src/OpenSSL/crypto.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/OpenSSL/crypto.py b/src/OpenSSL/crypto.py index 17fd522..a9b673c 100644 --- a/src/OpenSSL/crypto.py +++ b/src/OpenSSL/crypto.py @@ -784,7 +784,8 @@ class X509Extension: :param bool critical: A flag indicating whether this is a critical extension. - :param value: The value of the extension. + :param value: The OpenSSL textual representation of the extension's + value. :type value: :py:data:`bytes` :param subject: Optional X509 certificate to use as subject. |