diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-24 15:51:26 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-24 16:41:45 -0500 |
commit | 4ce810e22ccbf9ed1eadb4695e4cbe4cb59230fa (patch) | |
tree | ab4344cb40fa221247a5756d9edf6dc734cb4236 /docs/hazmat/primitives/asymmetric/rsa.rst | |
parent | 6ff1348dc76c8f900cabe0d281ef898cce6693f7 (diff) | |
download | cryptography-4ce810e22ccbf9ed1eadb4695e4cbe4cb59230fa.tar.gz cryptography-4ce810e22ccbf9ed1eadb4695e4cbe4cb59230fa.tar.bz2 cryptography-4ce810e22ccbf9ed1eadb4695e4cbe4cb59230fa.zip |
improve style in test, update docs for rsa encryption review
Diffstat (limited to 'docs/hazmat/primitives/asymmetric/rsa.rst')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/rsa.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/asymmetric/rsa.rst b/docs/hazmat/primitives/asymmetric/rsa.rst index ed0e1008..68ad089d 100644 --- a/docs/hazmat/primitives/asymmetric/rsa.rst +++ b/docs/hazmat/primitives/asymmetric/rsa.rst @@ -271,7 +271,8 @@ RSA .. versionadded:: 0.4 - Encrypt data using the public key. + Encrypt data using the public key. The resulting ciphertext can only + be decrypted with the private key. :param bytes plaintext: The plaintext to encrypt. |