commit | a33ea283d74c85076a21e60e1f09e4998f5c7c48 | [log] [tgz] |
---|---|---|
author | Andre Caron <andre.l.caron@gmail.com> | Sun May 31 16:32:26 2015 -0400 |
committer | Ian Cordasco <graffatcolmingov@gmail.com> | Wed Jun 24 13:35:48 2015 -0500 |
tree | 902278a1b88d9bd329ee669fdb6d93293422fc61 | |
parent | ca4c4462dcdbb72f653801f608c85696a4630349 [diff] [blame] |
Renames sign_509_request to create_x509_csr.
diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py index 012c13b..2ee1c3e 100644 --- a/src/cryptography/x509.py +++ b/src/cryptography/x509.py
@@ -1484,4 +1484,4 @@ """ Signs the request using the requestor's private key. """ - return backend.sign_x509_request(self, private_key, algorithm) + return backend.create_x509_csr(self, private_key, algorithm)