Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | :mod:`hashlib` --- Secure hashes and message digests |
| 2 | ==================================================== |
| 3 | |
| 4 | .. module:: hashlib |
| 5 | :synopsis: Secure hash and message digest algorithms. |
Gregory P. Smith | 26f8d1b | 2009-01-11 17:53:33 +0000 | [diff] [blame] | 6 | .. moduleauthor:: Gregory P. Smith <greg@krypto.org> |
| 7 | .. sectionauthor:: Gregory P. Smith <greg@krypto.org> |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 8 | |
| 9 | |
| 10 | .. versionadded:: 2.5 |
| 11 | |
| 12 | .. index:: |
| 13 | single: message digest, MD5 |
| 14 | single: secure hash algorithm, SHA1, SHA224, SHA256, SHA384, SHA512 |
| 15 | |
Éric Araujo | 29a0b57 | 2011-08-19 02:14:03 +0200 | [diff] [blame^] | 16 | **Source code:** :source:`Lib/hashlib.py` |
| 17 | |
| 18 | -------------- |
| 19 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 20 | This module implements a common interface to many different secure hash and |
| 21 | message digest algorithms. Included are the FIPS secure hash algorithms SHA1, |
| 22 | SHA224, SHA256, SHA384, and SHA512 (defined in FIPS 180-2) as well as RSA's MD5 |
| 23 | algorithm (defined in Internet :rfc:`1321`). The terms secure hash and message |
| 24 | digest are interchangeable. Older algorithms were called message digests. The |
| 25 | modern term is secure hash. |
| 26 | |
Gregory P. Smith | bde4007 | 2008-03-19 01:38:35 +0000 | [diff] [blame] | 27 | .. note:: |
| 28 | If you want the adler32 or crc32 hash functions they are available in |
| 29 | the :mod:`zlib` module. |
| 30 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 31 | .. warning:: |
| 32 | |
| 33 | Some algorithms have known hash collision weaknesses, see the FAQ at the end. |
| 34 | |
| 35 | There is one constructor method named for each type of :dfn:`hash`. All return |
| 36 | a hash object with the same simple interface. For example: use :func:`sha1` to |
| 37 | create a SHA1 hash object. You can now feed this object with arbitrary strings |
| 38 | using the :meth:`update` method. At any point you can ask it for the |
| 39 | :dfn:`digest` of the concatenation of the strings fed to it so far using the |
| 40 | :meth:`digest` or :meth:`hexdigest` methods. |
| 41 | |
Bill Janssen | 98d19da | 2007-09-10 21:51:02 +0000 | [diff] [blame] | 42 | .. index:: single: OpenSSL; (use in module hashlib) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 43 | |
| 44 | Constructors for hash algorithms that are always present in this module are |
| 45 | :func:`md5`, :func:`sha1`, :func:`sha224`, :func:`sha256`, :func:`sha384`, and |
| 46 | :func:`sha512`. Additional algorithms may also be available depending upon the |
| 47 | OpenSSL library that Python uses on your platform. |
| 48 | |
| 49 | For example, to obtain the digest of the string ``'Nobody inspects the spammish |
Georg Brandl | e8f1b00 | 2008-03-22 22:04:10 +0000 | [diff] [blame] | 50 | repetition'``: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 51 | |
| 52 | >>> import hashlib |
| 53 | >>> m = hashlib.md5() |
| 54 | >>> m.update("Nobody inspects") |
| 55 | >>> m.update(" the spammish repetition") |
| 56 | >>> m.digest() |
| 57 | '\xbbd\x9c\x83\xdd\x1e\xa5\xc9\xd9\xde\xc9\xa1\x8d\xf0\xff\xe9' |
Gregory P. Smith | e1ac4f1 | 2007-11-06 00:19:03 +0000 | [diff] [blame] | 58 | >>> m.digest_size |
| 59 | 16 |
| 60 | >>> m.block_size |
| 61 | 64 |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 62 | |
Georg Brandl | e8f1b00 | 2008-03-22 22:04:10 +0000 | [diff] [blame] | 63 | More condensed: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 64 | |
| 65 | >>> hashlib.sha224("Nobody inspects the spammish repetition").hexdigest() |
| 66 | 'a4337bc45a8fc544c03f52dc550cd6e1e87021bc896588bd79e901e2' |
| 67 | |
| 68 | A generic :func:`new` constructor that takes the string name of the desired |
| 69 | algorithm as its first parameter also exists to allow access to the above listed |
| 70 | hashes as well as any other algorithms that your OpenSSL library may offer. The |
| 71 | named constructors are much faster than :func:`new` and should be preferred. |
| 72 | |
Georg Brandl | e8f1b00 | 2008-03-22 22:04:10 +0000 | [diff] [blame] | 73 | Using :func:`new` with an algorithm provided by OpenSSL: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 74 | |
| 75 | >>> h = hashlib.new('ripemd160') |
| 76 | >>> h.update("Nobody inspects the spammish repetition") |
| 77 | >>> h.hexdigest() |
| 78 | 'cc4a5ce1b3df48aec5d22d1f16b894a0b894eccc' |
| 79 | |
Gregory P. Smith | e6390a1 | 2010-03-01 02:01:47 +0000 | [diff] [blame] | 80 | This module provides the following constant attribute: |
| 81 | |
| 82 | .. data:: hashlib.algorithms |
| 83 | |
| 84 | A tuple providing the names of the hash algorithms guaranteed to be |
| 85 | supported by this module. |
| 86 | |
| 87 | .. versionadded:: 2.7 |
| 88 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 89 | The following values are provided as constant attributes of the hash objects |
| 90 | returned by the constructors: |
| 91 | |
| 92 | |
Georg Brandl | 58d23fb | 2009-09-14 14:50:47 +0000 | [diff] [blame] | 93 | .. data:: hash.digest_size |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 94 | |
Gregory P. Smith | e1ac4f1 | 2007-11-06 00:19:03 +0000 | [diff] [blame] | 95 | The size of the resulting hash in bytes. |
| 96 | |
Georg Brandl | 58d23fb | 2009-09-14 14:50:47 +0000 | [diff] [blame] | 97 | .. data:: hash.block_size |
Gregory P. Smith | e1ac4f1 | 2007-11-06 00:19:03 +0000 | [diff] [blame] | 98 | |
| 99 | The internal block size of the hash algorithm in bytes. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 100 | |
| 101 | A hash object has the following methods: |
| 102 | |
| 103 | |
| 104 | .. method:: hash.update(arg) |
| 105 | |
| 106 | Update the hash object with the string *arg*. Repeated calls are equivalent to |
| 107 | a single call with the concatenation of all the arguments: ``m.update(a); |
| 108 | m.update(b)`` is equivalent to ``m.update(a+b)``. |
| 109 | |
Gregory P. Smith | d02eeda | 2009-05-04 00:16:49 +0000 | [diff] [blame] | 110 | .. versionchanged:: 2.7 |
| 111 | |
| 112 | The Python GIL is released to allow other threads to run while |
| 113 | hash updates on data larger than 2048 bytes is taking place when |
| 114 | using hash algorithms supplied by OpenSSL. |
| 115 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 116 | |
| 117 | .. method:: hash.digest() |
| 118 | |
| 119 | Return the digest of the strings passed to the :meth:`update` method so far. |
| 120 | This is a string of :attr:`digest_size` bytes which may contain non-ASCII |
| 121 | characters, including null bytes. |
| 122 | |
| 123 | |
| 124 | .. method:: hash.hexdigest() |
| 125 | |
| 126 | Like :meth:`digest` except the digest is returned as a string of double length, |
| 127 | containing only hexadecimal digits. This may be used to exchange the value |
| 128 | safely in email or other non-binary environments. |
| 129 | |
| 130 | |
| 131 | .. method:: hash.copy() |
| 132 | |
| 133 | Return a copy ("clone") of the hash object. This can be used to efficiently |
| 134 | compute the digests of strings that share a common initial substring. |
| 135 | |
| 136 | |
| 137 | .. seealso:: |
| 138 | |
| 139 | Module :mod:`hmac` |
| 140 | A module to generate message authentication codes using hashes. |
| 141 | |
| 142 | Module :mod:`base64` |
| 143 | Another way to encode binary hashes for non-binary environments. |
| 144 | |
| 145 | http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf |
| 146 | The FIPS 180-2 publication on Secure Hash Algorithms. |
| 147 | |
Georg Brandl | 16fd5cd | 2010-05-21 20:24:45 +0000 | [diff] [blame] | 148 | http://en.wikipedia.org/wiki/Cryptographic_hash_function#Cryptographic_hash_algorithms |
| 149 | Wikipedia article with information on which algorithms have known issues and |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 150 | what that means regarding their use. |
| 151 | |