diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-06-26 19:57:18 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-06-26 19:57:18 -0400 |
commit | b3b0fbe2fb4f3c6939c05ff90e0201fb78c51074 (patch) | |
tree | e8b8a504fe64179906ce965467a46d520eb4438d /docs | |
parent | 354fc56e6a9781f3f2213537c3c65d7e720dfcb4 (diff) | |
download | cryptography-b3b0fbe2fb4f3c6939c05ff90e0201fb78c51074.tar.gz cryptography-b3b0fbe2fb4f3c6939c05ff90e0201fb78c51074.tar.bz2 cryptography-b3b0fbe2fb4f3c6939c05ff90e0201fb78c51074.zip |
Make the parameter ordering in sign() consistent with other code
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/x509.rst b/docs/x509.rst index c4c441e7..79f48299 100644 --- a/docs/x509.rst +++ b/docs/x509.rst @@ -515,7 +515,7 @@ X.509 CSR (Certificate Signing Request) Builder Object :returns: A new :class:`~cryptography.x509.CertificateSigningRequestBuilder`. - .. method:: sign(backend, private_key, algorithm) + .. method:: sign(private_key, algorithm, backend) :param backend: Backend that will be used to sign the request. Must support the |