summaryrefslogtreecommitdiffstats
path: root/Lib/hmac.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/hmac.py')
-rw-r--r--Lib/hmac.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/hmac.py b/Lib/hmac.py
index 6af564e..cae0800 100644
--- a/Lib/hmac.py
+++ b/Lib/hmac.py
@@ -35,7 +35,7 @@ class HMAC:
self.outer = digestmod.new()
self.inner = digestmod.new()
self.digest_size = digestmod.digest_size
-
+
blocksize = 64
ipad = "\x36" * blocksize
opad = "\x5C" * blocksize
@@ -97,4 +97,3 @@ def new(key, msg = None, digestmod = None):
method.
"""
return HMAC(key, msg, digestmod)
-