1 """HMAC (Keyed-Hashing for Message Authentication) Python module.
3 Implements the HMAC algorithm as described by RFC 2104.
6 import warnings
as _warnings
8 trans_5C
= "".join ([chr (x ^
0x5C) for x
in xrange(256)])
9 trans_36
= "".join ([chr (x ^
0x36) for x
in xrange(256)])
11 # The size of the digests returned by HMAC depends on the underlying
12 # hashing module used. Use digest_size from the instance of HMAC instead.
15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
16 # that the latter return very quickly. HMAC("") in contrast is quite
18 _secret_backdoor_key
= []
21 """RFC 2104 HMAC class. Also complies with RFC 4231.
23 This supports the API for Cryptographic Hash Functions (PEP 247).
25 blocksize
= 64 # 512-bit HMAC; can be changed in subclasses.
27 def __init__(self
, key
, msg
= None, digestmod
= None):
28 """Create a new HMAC object.
30 key: key for the keyed hash object.
31 msg: Initial input for the hash, if provided.
32 digestmod: A module supporting PEP 247. *OR*
33 A hashlib constructor returning a new hash object.
34 Defaults to hashlib.md5.
37 if key
is _secret_backdoor_key
: # cheap
42 digestmod
= hashlib
.md5
44 if hasattr(digestmod
, '__call__'):
45 self
.digest_cons
= digestmod
47 self
.digest_cons
= lambda d
='': digestmod
.new(d
)
49 self
.outer
= self
.digest_cons()
50 self
.inner
= self
.digest_cons()
51 self
.digest_size
= self
.inner
.digest_size
53 if hasattr(self
.inner
, 'block_size'):
54 blocksize
= self
.inner
.block_size
56 # Very low blocksize, most likely a legacy value like
57 # Lib/sha.py and Lib/md5.py have.
58 _warnings
.warn('block_size of %d seems too small; using our '
59 'default of %d.' % (blocksize
, self
.blocksize
),
61 blocksize
= self
.blocksize
63 _warnings
.warn('No block_size attribute on given digest object; '
64 'Assuming %d.' % (self
.blocksize
),
66 blocksize
= self
.blocksize
68 if len(key
) > blocksize
:
69 key
= self
.digest_cons(key
).digest()
71 key
= key
+ chr(0) * (blocksize
- len(key
))
72 self
.outer
.update(key
.translate(trans_5C
))
73 self
.inner
.update(key
.translate(trans_36
))
78 ## raise NotImplementedError, "clear() method not available in HMAC."
80 def update(self
, msg
):
81 """Update this hashing object with the string msg.
83 self
.inner
.update(msg
)
86 """Return a separate copy of this hashing object.
88 An update to this copy won't affect the original object.
90 other
= self
.__class
__(_secret_backdoor_key
)
91 other
.digest_cons
= self
.digest_cons
92 other
.digest_size
= self
.digest_size
93 other
.inner
= self
.inner
.copy()
94 other
.outer
= self
.outer
.copy()
98 """Return a hash object for the current state.
100 To be used only internally with digest() and hexdigest().
102 h
= self
.outer
.copy()
103 h
.update(self
.inner
.digest())
107 """Return the hash value of this hashing object.
109 This returns a string containing 8-bit data. The object is
110 not altered in any way by this function; you can continue
111 updating the object after calling this function.
117 """Like digest(), but returns a string of hexadecimal digits instead.
122 def new(key
, msg
= None, digestmod
= None):
123 """Create a new hashing object and return it.
125 key: The starting key for the hash.
126 msg: if available, will immediately be hashed into the object's starting
129 You can now feed arbitrary strings into the object using its update()
130 method, and can ask for the hash value at any time by calling its digest()
133 return HMAC(key
, msg
, digestmod
)