diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-16 11:17:07 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-16 11:17:07 -0800 |
commit | 6cf242bee212b5b6069865a48c6bdc4836f78ff6 (patch) | |
tree | 9e4b24da0942c5fd14216aa9913fc107f853e59b /docs | |
parent | f272c14e7d41d84e095f61410fc8006e99d802e7 (diff) | |
download | cryptography-6cf242bee212b5b6069865a48c6bdc4836f78ff6.tar.gz cryptography-6cf242bee212b5b6069865a48c6bdc4836f78ff6.tar.bz2 cryptography-6cf242bee212b5b6069865a48c6bdc4836f78ff6.zip |
Document the other consequence of losing your key
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contributing.rst | 3 | ||||
-rw-r--r-- | docs/fernet.rst | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst index cb9c7283..036043f5 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -244,7 +244,8 @@ Use `tox`_ to build the documentation. For example: docs: commands succeeded congratulations :) -The HTML documentation index can now be found at ``docs/_build/html/index.html`` +The HTML documentation index can now be found at +``docs/_build/html/index.html``. .. _`GitHub`: https://github.com/pyca/cryptography diff --git a/docs/fernet.rst b/docs/fernet.rst index 241bf1ea..3f0cdded 100644 --- a/docs/fernet.rst +++ b/docs/fernet.rst @@ -30,7 +30,9 @@ using it cannot be manipulated or read without the key. 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. + 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 + authenticated and decrypted. .. method:: encrypt(plaintext) |