From 05b94a6d5ea020ef1fec9d6192935687d2db7ebb Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 31 Oct 2013 09:49:35 -0700 Subject: Unused --- cryptography/fernet.py | 1 - 1 file changed, 1 deletion(-) 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 -- cgit v1.2.3