summaryrefslogtreecommitdiff
path: root/OpenSSL/crypto.py
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSSL/crypto.py')
-rw-r--r--OpenSSL/crypto.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSSL/crypto.py b/OpenSSL/crypto.py
index 92ec815..0ff65dc 100644
--- a/OpenSSL/crypto.py
+++ b/OpenSSL/crypto.py
@@ -1579,7 +1579,7 @@ class X509StoreContext(object):
Convert an OpenSSL native context error failure into a Python
exception.
- When a call to native OpenSSL X509_verify_cert fails, additonal information
+ When a call to native OpenSSL X509_verify_cert fails, additional information
about the failure can be obtained from the store context.
"""
errors = [
@@ -1617,7 +1617,7 @@ class X509StoreContext(object):
:param store_ctx: The :py:class:`X509StoreContext` to verify.
- :raises X509StoreContextError: If an error occured when validating a
+ :raises X509StoreContextError: If an error occurred when validating a
certificate in the context. Sets ``certificate`` attribute to indicate
which certificate caused the error.
"""
@@ -1785,7 +1785,7 @@ class Revoked(object):
b"cessationOfOperation",
b"certificateHold",
# b"removeFromCRL",
- ]
+ ]
def __init__(self):
revoked = _lib.X509_REVOKED_new()