aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-31 09:49:35 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-31 09:49:35 -0700
commit05b94a6d5ea020ef1fec9d6192935687d2db7ebb (patch)
tree9e6786c6ea60b26aa0d5aa9d93fe4be228541f70
parentcd47c4ae14444ba0802d16fdb2960f7665dc9cbd (diff)
downloadcryptography-05b94a6d5ea020ef1fec9d6192935687d2db7ebb.tar.gz
cryptography-05b94a6d5ea020ef1fec9d6192935687d2db7ebb.tar.bz2
cryptography-05b94a6d5ea020ef1fec9d6192935687d2db7ebb.zip
Unused
-rw-r--r--cryptography/fernet.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/cryptography/fernet.py b/cryptography/fernet.py
index e4ee059c..4220e0cb 100644
--- a/cryptography/fernet.py
+++ b/cryptography/fernet.py
@@ -47,7 +47,6 @@ class Fernet(object):
timestamp = data[1:9]
iv = data[9:25]
ciphertext = data[25:-32]
- hmac = data[-32:]
if ttl is not None:
if struct.unpack(">Q", timestamp)[0] + ttl < current_time:
raise ValueError