summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--OpenSSL/crypto.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSSL/crypto.py b/OpenSSL/crypto.py
index 6e993d6..60c34ce 100644
--- a/OpenSSL/crypto.py
+++ b/OpenSSL/crypto.py
@@ -947,7 +947,7 @@ class X509Req(object):
def sign(self, pkey, digest):
"""
- Sign the certificate signing request using the supplied key and digest.
+ Sign the certificate signing request with this key and digest type.
:param pkey: The key pair to sign with.
:type pkey: :py:class:`PKey`
@@ -1068,7 +1068,7 @@ class X509(object):
def sign(self, pkey, digest):
"""
- Sign the certificate using the supplied key and digest type.
+ Sign the certificate with this key and digest type.
:param pkey: The key to sign with.
:type pkey: :py:class:`PKey`