diff options
author | David Sanders <dsanders11@ucsbalum.com> | 2017-08-20 05:17:01 -0600 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-08-20 07:17:01 -0400 |
commit | c4a23fb077d7a172f979326be99293d4eb895de8 (patch) | |
tree | 5c86a152733984b6b1e87636d19d454b9bb3b878 /docs/hazmat | |
parent | 64dc16b9f91ac383533582a9c12f737d8f2a10a6 (diff) | |
download | cryptography-c4a23fb077d7a172f979326be99293d4eb895de8.tar.gz cryptography-c4a23fb077d7a172f979326be99293d4eb895de8.tar.bz2 cryptography-c4a23fb077d7a172f979326be99293d4eb895de8.zip |
Fix mistake in `RSAPublicKey.verify` documentation (#3872)
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/rsa.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/asymmetric/rsa.rst b/docs/hazmat/primitives/asymmetric/rsa.rst index 97f68c3a..a49b4d34 100644 --- a/docs/hazmat/primitives/asymmetric/rsa.rst +++ b/docs/hazmat/primitives/asymmetric/rsa.rst @@ -702,7 +702,7 @@ Key interfaces :param algorithm: An instance of :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` or :class:`~cryptography.hazmat.primitives.asymmetric.utils.Prehashed` - if the ``data`` you want to sign has already been hashed. + if the ``data`` you want to verify has already been hashed. :raises cryptography.exceptions.InvalidSignature: If the signature does not validate. |