aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/fernet.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/fernet.rst b/docs/fernet.rst
index 938ba0cb..ac610eb8 100644
--- a/docs/fernet.rst
+++ b/docs/fernet.rst
@@ -22,6 +22,9 @@ using it cannot be manipulated or read without the key.
>>> from cryptography.fernet import Fernet
>>> f = Fernet(key)
>>> ciphertext = f.encrypt(b"my deep dark secret")
+ # Secret bytes.
+ >>> ciphertext
+ '...'
>>> f.decrypt(ciphertext)
'my deep dark secret'
@@ -33,7 +36,7 @@ using it cannot be manipulated or read without the key.
:param bytes plaintext: The message you would like to encrypt.
:returns bytes: A secure message which cannot be read or altered
- without the key.
+ without the key. It is URL safe base64-encoded.
.. method:: decrypt(ciphertext, ttl=None)