diff options
author | Aviv Palivoda <palaviv@gmail.com> | 2016-07-01 00:43:41 +0300 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-06-30 17:43:41 -0400 |
commit | 77d917b983022d176e266e29c089493e22df9fa8 (patch) | |
tree | c9c68677c07dd594838ff2e92914def267643655 /docs/hazmat/primitives | |
parent | f67429b9d199931eb695524724a947847ed1f808 (diff) | |
download | cryptography-77d917b983022d176e266e29c089493e22df9fa8.tar.gz cryptography-77d917b983022d176e266e29c089493e22df9fa8.tar.bz2 cryptography-77d917b983022d176e266e29c089493e22df9fa8.zip |
one shot verify documentation fix (#3031)
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/dsa.rst | 4 | ||||
-rw-r--r-- | docs/hazmat/primitives/asymmetric/rsa.rst | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/hazmat/primitives/asymmetric/dsa.rst b/docs/hazmat/primitives/asymmetric/dsa.rst index 0eb68ce6..7ab79f8c 100644 --- a/docs/hazmat/primitives/asymmetric/dsa.rst +++ b/docs/hazmat/primitives/asymmetric/dsa.rst @@ -439,8 +439,8 @@ Key interfaces .. versionadded:: 1.5 - Verify one block of data which can be verified later by others using the - public key. + Verify one block of data was signed by the private key + associated with this public key. :param bytes signature: The signature to verify. diff --git a/docs/hazmat/primitives/asymmetric/rsa.rst b/docs/hazmat/primitives/asymmetric/rsa.rst index 93214449..4cf9fa78 100644 --- a/docs/hazmat/primitives/asymmetric/rsa.rst +++ b/docs/hazmat/primitives/asymmetric/rsa.rst @@ -710,8 +710,8 @@ Key interfaces .. versionadded:: 1.4 - Verify one block of data which can be verified later by others using the - public key. + Verify one block of data was signed by the private key + associated with this public key. :param bytes signature: The signature to verify. |