diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-31 10:40:17 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-31 10:40:17 -0700 |
| commit | 36e2df0955aa1c6534049be21868c24e93569b8b (patch) | |
| tree | 29324a39bf79338ab0bef3d667e8ce88573f879b | |
| parent | 13e0d54510d3f939c749d3efc810bad675f4f908 (diff) | |
| download | cryptography-36e2df0955aa1c6534049be21868c24e93569b8b.tar.gz cryptography-36e2df0955aa1c6534049be21868c24e93569b8b.tar.bz2 cryptography-36e2df0955aa1c6534049be21868c24e93569b8b.zip | |
Fixed keylength in example
| -rw-r--r-- | docs/fernet.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/fernet.rst b/docs/fernet.rst index d44e737b..33488891 100644 --- a/docs/fernet.rst +++ b/docs/fernet.rst @@ -6,7 +6,7 @@ Fernet .. testsetup:: import binascii - key = binascii.unhexlify(b"0" * 32) + key = binascii.unhexlify(b"0" * 64) `Fernet`_ is an implementation of symmetric (also known as "secret key") |
