Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`hmac` --- Keyed-Hashing for Message Authentication |
| 2 | ======================================================== |
| 3 | |
| 4 | .. module:: hmac |
Georg Brandl | 80b75fd | 2010-10-17 09:43:35 +0000 | [diff] [blame] | 5 | :synopsis: Keyed-Hashing for Message Authentication (HMAC) implementation |
| 6 | for Python. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 7 | .. moduleauthor:: Gerhard Häring <ghaering@users.sourceforge.net> |
| 8 | .. sectionauthor:: Gerhard Häring <ghaering@users.sourceforge.net> |
| 9 | |
Raymond Hettinger | 469271d | 2011-01-27 20:38:46 +0000 | [diff] [blame] | 10 | **Source code:** :source:`Lib/hmac.py` |
| 11 | |
| 12 | -------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 13 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 14 | This module implements the HMAC algorithm as described by :rfc:`2104`. |
| 15 | |
| 16 | |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 17 | .. function:: new(key, msg=None, digestmod=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 18 | |
Christian Heimes | 04926ae | 2013-07-01 13:08:42 +0200 | [diff] [blame] | 19 | Return a new hmac object. *key* is a bytes or bytearray object giving the |
| 20 | secret key. If *msg* is present, the method call ``update(msg)`` is made. |
Christian Heimes | 634919a | 2013-11-20 17:23:06 +0100 | [diff] [blame] | 21 | *digestmod* is the digest name, digest constructor or module for the HMAC |
| 22 | object to use. It supports any name suitable to :func:`hashlib.new` and |
| 23 | defaults to the :data:`hashlib.md5` constructor. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 24 | |
Christian Heimes | 04926ae | 2013-07-01 13:08:42 +0200 | [diff] [blame] | 25 | .. versionchanged:: 3.4 |
| 26 | Parameter *key* can be a bytes or bytearray object. Parameter *msg* can |
| 27 | be of any type supported by :mod:`hashlib`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 28 | |
Christian Heimes | 634919a | 2013-11-20 17:23:06 +0100 | [diff] [blame] | 29 | Paramter *digestmod* can be the name of a hash algorithm. |
| 30 | |
| 31 | .. deprecated:: 3.4 |
| 32 | MD5 as implicit default digest for *digestmod* is deprecated. |
| 33 | |
| 34 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 35 | An HMAC object has the following methods: |
| 36 | |
Georg Brandl | 9701eb6 | 2012-02-05 09:25:22 +0100 | [diff] [blame] | 37 | .. method:: HMAC.update(msg) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 38 | |
Christian Heimes | 04926ae | 2013-07-01 13:08:42 +0200 | [diff] [blame] | 39 | Update the hmac object with *msg*. Repeated calls are equivalent to a |
| 40 | single call with the concatenation of all the arguments: |
Georg Brandl | 80b75fd | 2010-10-17 09:43:35 +0000 | [diff] [blame] | 41 | ``m.update(a); m.update(b)`` is equivalent to ``m.update(a + b)``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 42 | |
Christian Heimes | 04926ae | 2013-07-01 13:08:42 +0200 | [diff] [blame] | 43 | .. versionchanged:: 3.4 |
| 44 | Parameter *msg* can be of any type supported by :mod:`hashlib`. |
| 45 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 46 | |
Georg Brandl | 9701eb6 | 2012-02-05 09:25:22 +0100 | [diff] [blame] | 47 | .. method:: HMAC.digest() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 48 | |
Georg Brandl | 80b75fd | 2010-10-17 09:43:35 +0000 | [diff] [blame] | 49 | Return the digest of the bytes passed to the :meth:`update` method so far. |
| 50 | This bytes object will be the same length as the *digest_size* of the digest |
| 51 | given to the constructor. It may contain non-ASCII bytes, including NUL |
| 52 | bytes. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 53 | |
Charles-François Natali | 7feb9f4 | 2012-05-13 19:53:07 +0200 | [diff] [blame] | 54 | .. warning:: |
| 55 | |
| 56 | When comparing the output of :meth:`digest` to an externally-supplied |
| 57 | digest during a verification routine, it is recommended to use the |
Nick Coghlan | 807770e | 2012-06-15 21:14:08 +1000 | [diff] [blame] | 58 | :func:`compare_digest` function instead of the ``==`` operator |
| 59 | to reduce the vulnerability to timing attacks. |
Charles-François Natali | 7feb9f4 | 2012-05-13 19:53:07 +0200 | [diff] [blame] | 60 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 61 | |
Georg Brandl | 9701eb6 | 2012-02-05 09:25:22 +0100 | [diff] [blame] | 62 | .. method:: HMAC.hexdigest() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 63 | |
Georg Brandl | 80b75fd | 2010-10-17 09:43:35 +0000 | [diff] [blame] | 64 | Like :meth:`digest` except the digest is returned as a string twice the |
| 65 | length containing only hexadecimal digits. This may be used to exchange the |
| 66 | value safely in email or other non-binary environments. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 67 | |
Charles-François Natali | 7feb9f4 | 2012-05-13 19:53:07 +0200 | [diff] [blame] | 68 | .. warning:: |
| 69 | |
Antoine Pitrou | 9df73da | 2012-06-24 16:03:50 +0200 | [diff] [blame] | 70 | When comparing the output of :meth:`hexdigest` to an externally-supplied |
| 71 | digest during a verification routine, it is recommended to use the |
| 72 | :func:`compare_digest` function instead of the ``==`` operator |
| 73 | to reduce the vulnerability to timing attacks. |
Charles-François Natali | 7feb9f4 | 2012-05-13 19:53:07 +0200 | [diff] [blame] | 74 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 75 | |
Georg Brandl | 9701eb6 | 2012-02-05 09:25:22 +0100 | [diff] [blame] | 76 | .. method:: HMAC.copy() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 77 | |
| 78 | Return a copy ("clone") of the hmac object. This can be used to efficiently |
| 79 | compute the digests of strings that share a common initial substring. |
| 80 | |
| 81 | |
Christian Heimes | c4ab110 | 2013-11-20 17:35:06 +0100 | [diff] [blame] | 82 | A hash object has the following attributes: |
| 83 | |
| 84 | .. attribute:: HMAC.digest_size |
| 85 | |
| 86 | The size of the resulting HMAC digest in bytes. |
| 87 | |
| 88 | .. attribute:: HMAC.block_size |
| 89 | |
| 90 | The internal block size of the hash algorithm in bytes. |
| 91 | |
| 92 | .. versionadded:: 3.4 |
| 93 | |
| 94 | .. attribute:: HMAC.name |
| 95 | |
| 96 | The canonical name of this HMAC, always lowercase, e.g. ``hmac-md5``. |
| 97 | |
| 98 | .. versionadded:: 3.4 |
| 99 | |
| 100 | |
Charles-François Natali | 7feb9f4 | 2012-05-13 19:53:07 +0200 | [diff] [blame] | 101 | This module also provides the following helper function: |
| 102 | |
Nick Coghlan | 807770e | 2012-06-15 21:14:08 +1000 | [diff] [blame] | 103 | .. function:: compare_digest(a, b) |
Charles-François Natali | 7feb9f4 | 2012-05-13 19:53:07 +0200 | [diff] [blame] | 104 | |
Antoine Pitrou | 5f762af | 2012-06-24 16:23:54 +0200 | [diff] [blame] | 105 | Return ``a == b``. This function uses an approach designed to prevent |
| 106 | timing analysis by avoiding content-based short circuiting behaviour, |
| 107 | making it appropriate for cryptography. *a* and *b* must both be of the |
| 108 | same type: either :class:`str` (ASCII only, as e.g. returned by |
Ezio Melotti | c228e96 | 2013-05-04 18:06:34 +0300 | [diff] [blame] | 109 | :meth:`HMAC.hexdigest`), or a :term:`bytes-like object`. |
Nick Coghlan | 807770e | 2012-06-15 21:14:08 +1000 | [diff] [blame] | 110 | |
Charles-François Natali | 7feb9f4 | 2012-05-13 19:53:07 +0200 | [diff] [blame] | 111 | .. note:: |
| 112 | |
Antoine Pitrou | f61e791 | 2012-06-24 16:21:10 +0200 | [diff] [blame] | 113 | If *a* and *b* are of different lengths, or if an error occurs, |
Larry Hastings | 48986d6 | 2012-06-25 00:59:34 -0700 | [diff] [blame] | 114 | a timing attack could theoretically reveal information about the |
| 115 | types and lengths of *a* and *b*--but not their values. |
Antoine Pitrou | f61e791 | 2012-06-24 16:21:10 +0200 | [diff] [blame] | 116 | |
Charles-François Natali | 7feb9f4 | 2012-05-13 19:53:07 +0200 | [diff] [blame] | 117 | |
Charles-François Natali | 9b704ec | 2012-05-15 21:00:32 +0200 | [diff] [blame] | 118 | .. versionadded:: 3.3 |
Charles-François Natali | 7feb9f4 | 2012-05-13 19:53:07 +0200 | [diff] [blame] | 119 | |
Georg Brandl | a1bc35f | 2012-06-24 16:07:33 +0200 | [diff] [blame] | 120 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 121 | .. seealso:: |
| 122 | |
| 123 | Module :mod:`hashlib` |
Ezio Melotti | 0639d5a | 2009-12-19 23:26:38 +0000 | [diff] [blame] | 124 | The Python module providing secure hash functions. |