blob: 88c3fd5377a56c651df305d0f570b10a3b8f0fb8 [file] [log] [blame]
Guido van Rossum8ceef412001-09-11 15:54:00 +00001"""HMAC (Keyed-Hashing for Message Authentication) Python module.
2
3Implements the HMAC algorithm as described by RFC 2104.
4"""
5
Thomas Wouters902d6eb2007-01-09 23:18:33 +00006trans_5C = "".join ([chr (x ^ 0x5C) for x in xrange(256)])
7trans_36 = "".join ([chr (x ^ 0x36) for x in xrange(256)])
Tim Petersb64bec32001-09-18 02:26:39 +00008
Andrew M. Kuchling1ccdff92001-11-02 21:49:20 +00009# The size of the digests returned by HMAC depends on the underlying
Thomas Wouters902d6eb2007-01-09 23:18:33 +000010# hashing module used. Use digest_size from the instance of HMAC instead.
Andrew M. Kuchling1ccdff92001-11-02 21:49:20 +000011digest_size = None
12
Tim Peters934d31b2004-03-20 20:11:29 +000013# A unique object passed by HMAC.copy() to the HMAC constructor, in order
14# that the latter return very quickly. HMAC("") in contrast is quite
15# expensive.
16_secret_backdoor_key = []
17
Guido van Rossum8ceef412001-09-11 15:54:00 +000018class HMAC:
19 """RFC2104 HMAC class.
20
Andrew M. Kuchling1ccdff92001-11-02 21:49:20 +000021 This supports the API for Cryptographic Hash Functions (PEP 247).
Tim Petersb64bec32001-09-18 02:26:39 +000022 """
Thomas Wouters902d6eb2007-01-09 23:18:33 +000023 blocksize = 64 # 512-bit HMAC; can be changed in subclasses.
Guido van Rossum8ceef412001-09-11 15:54:00 +000024
25 def __init__(self, key, msg = None, digestmod = None):
26 """Create a new HMAC object.
27
28 key: key for the keyed hash object.
29 msg: Initial input for the hash, if provided.
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000030 digestmod: A module supporting PEP 247. *OR*
31 A hashlib constructor returning a new hash object.
32 Defaults to hashlib.md5.
Guido van Rossum8ceef412001-09-11 15:54:00 +000033 """
Tim Peters934d31b2004-03-20 20:11:29 +000034
35 if key is _secret_backdoor_key: # cheap
36 return
37
Raymond Hettinger7fdfc2d2002-05-31 17:49:10 +000038 if digestmod is None:
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000039 import hashlib
40 digestmod = hashlib.md5
Guido van Rossum8ceef412001-09-11 15:54:00 +000041
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000042 if callable(digestmod):
43 self.digest_cons = digestmod
44 else:
45 self.digest_cons = lambda d='': digestmod.new(d)
46
47 self.outer = self.digest_cons()
48 self.inner = self.digest_cons()
49 self.digest_size = self.inner.digest_size
Tim Peters88768482001-11-13 21:51:26 +000050
Thomas Wouters902d6eb2007-01-09 23:18:33 +000051 blocksize = self.blocksize
Guido van Rossum8ceef412001-09-11 15:54:00 +000052 if len(key) > blocksize:
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000053 key = self.digest_cons(key).digest()
Guido van Rossum8ceef412001-09-11 15:54:00 +000054
55 key = key + chr(0) * (blocksize - len(key))
Thomas Wouters902d6eb2007-01-09 23:18:33 +000056 self.outer.update(key.translate(trans_5C))
57 self.inner.update(key.translate(trans_36))
Raymond Hettinger094662a2002-06-01 01:29:16 +000058 if msg is not None:
Guido van Rossum8ceef412001-09-11 15:54:00 +000059 self.update(msg)
60
61## def clear(self):
62## raise NotImplementedError, "clear() method not available in HMAC."
63
64 def update(self, msg):
65 """Update this hashing object with the string msg.
66 """
67 self.inner.update(msg)
68
69 def copy(self):
70 """Return a separate copy of this hashing object.
71
72 An update to this copy won't affect the original object.
73 """
Thomas Wouters902d6eb2007-01-09 23:18:33 +000074 other = self.__class__(_secret_backdoor_key)
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000075 other.digest_cons = self.digest_cons
Tim Peters934d31b2004-03-20 20:11:29 +000076 other.digest_size = self.digest_size
Andrew M. Kuchling1ccdff92001-11-02 21:49:20 +000077 other.inner = self.inner.copy()
78 other.outer = self.outer.copy()
79 return other
Guido van Rossum8ceef412001-09-11 15:54:00 +000080
Thomas Wouters902d6eb2007-01-09 23:18:33 +000081 def _current(self):
82 """Return a hash object for the current state.
83
84 To be used only internally with digest() and hexdigest().
85 """
86 h = self.outer.copy()
87 h.update(self.inner.digest())
88 return h
89
Guido van Rossum8ceef412001-09-11 15:54:00 +000090 def digest(self):
91 """Return the hash value of this hashing object.
92
93 This returns a string containing 8-bit data. The object is
94 not altered in any way by this function; you can continue
95 updating the object after calling this function.
96 """
Thomas Wouters902d6eb2007-01-09 23:18:33 +000097 h = self._current()
Guido van Rossum8ceef412001-09-11 15:54:00 +000098 return h.digest()
99
100 def hexdigest(self):
101 """Like digest(), but returns a string of hexadecimal digits instead.
102 """
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000103 h = self._current()
104 return h.hexdigest()
Guido van Rossum8ceef412001-09-11 15:54:00 +0000105
106def new(key, msg = None, digestmod = None):
107 """Create a new hashing object and return it.
108
109 key: The starting key for the hash.
110 msg: if available, will immediately be hashed into the object's starting
Tim Petersb64bec32001-09-18 02:26:39 +0000111 state.
Guido van Rossum8ceef412001-09-11 15:54:00 +0000112
113 You can now feed arbitrary strings into the object using its update()
114 method, and can ask for the hash value at any time by calling its digest()
115 method.
116 """
117 return HMAC(key, msg, digestmod)