aboutsummaryrefslogtreecommitdiffstats
path: root/docs/fernet.rst
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-02-08 09:43:16 +0000
committerAlex Stapleton <alexs@prol.etari.at>2014-02-08 09:56:30 +0000
commit63b3de2fa82729022d2c97e54b4c5e1a7ceff8f4 (patch)
tree1b6b3f291b07e5694c4a5474804296524ec70b1e /docs/fernet.rst
parentf970eaa676eb0cd89cdb2389f03d365899812822 (diff)
downloadcryptography-63b3de2fa82729022d2c97e54b4c5e1a7ceff8f4.tar.gz
cryptography-63b3de2fa82729022d2c97e54b4c5e1a7ceff8f4.tar.bz2
cryptography-63b3de2fa82729022d2c97e54b4c5e1a7ceff8f4.zip
s/which/that/
Which is usually for descriptive clauses in technical writing, while that is restrictive. Most of the time we are being being restrictive.
Diffstat (limited to 'docs/fernet.rst')
-rw-r--r--docs/fernet.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/fernet.rst b/docs/fernet.rst
index b0215e32..40f1a3c8 100644
--- a/docs/fernet.rst
+++ b/docs/fernet.rst
@@ -31,13 +31,13 @@ symmetric (also known as "secret key") authenticated cryptography.
Generates a fresh fernet key. Keep this some place safe! If you lose it
you'll no longer be able to decrypt messages; if anyone else gains
access to it, they'll be able to decrypt all of your messages, and
- they'll also be able forge arbitrary messages which will be
+ they'll also be able forge arbitrary messages that will be
authenticated and decrypted.
.. method:: encrypt(plaintext)
:param bytes plaintext: The message you would like to encrypt.
- :returns bytes: A secure message which cannot be read or altered
+ :returns bytes: A secure message that cannot be read or altered
without the key. It is URL-safe base64-encoded. This is
referred to as a "Fernet token".