diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-24 14:03:50 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-24 14:03:50 (GMT) |
commit | 9df73dac846fca8140ff663aaf76cd88e1df4a23 (patch) | |
tree | cd47bd4c741b4f543f7609635236518f77ce380c /Doc/library/hmac.rst | |
parent | 39e810eb6c6b19f3d8c26683c97207f411f0c22f (diff) | |
download | cpython-9df73dac846fca8140ff663aaf76cd88e1df4a23.zip cpython-9df73dac846fca8140ff663aaf76cd88e1df4a23.tar.gz cpython-9df73dac846fca8140ff663aaf76cd88e1df4a23.tar.bz2 |
Larry's suggested rewording of the compare_digest() docs.
Diffstat (limited to 'Doc/library/hmac.rst')
-rw-r--r-- | Doc/library/hmac.rst | 41 |
1 files changed, 12 insertions, 29 deletions
diff --git a/Doc/library/hmac.rst b/Doc/library/hmac.rst index e9491fd..2ea3fc6 100644 --- a/Doc/library/hmac.rst +++ b/Doc/library/hmac.rst @@ -54,11 +54,10 @@ An HMAC object has the following methods: .. warning:: - The output of :meth:`hexdigest` should not be compared directly to an - externally-supplied digest during a verification routine. Instead, the - externally supplied digest should be converted to a :class:`bytes` - value and compared to the output of :meth:`digest` with - :func:`compare_digest`. + When comparing the output of :meth:`hexdigest` to an externally-supplied + digest during a verification routine, it is recommended to use the + :func:`compare_digest` function instead of the ``==`` operator + to reduce the vulnerability to timing attacks. .. method:: HMAC.copy() @@ -71,32 +70,16 @@ This module also provides the following helper function: .. function:: compare_digest(a, b) - Returns the equivalent of ``a == b``, but avoids content based - short circuiting behaviour to reduce the vulnerability to timing - analysis. The inputs must either both support the buffer protocol (e.g. - :class:`bytes` and :class:`bytearray` instances) or be ASCII only - :class:`str` instances as returned by :meth:`hexdigest`. - :class:`bytes` and :class:`str` instances can't be mixed. - - Using a short circuiting comparison (that is, one that terminates as soon - as it finds any difference between the values) to check digests for - correctness can be problematic, as it introduces a potential - vulnerability when an attacker can control both the message to be checked - *and* the purported signature value. By keeping the plaintext consistent - and supplying different signature values, an attacker may be able to use - timing variations to search the signature space for the expected value in - O(n) time rather than the desired O(2**n). + Return ``a == b``. This function uses an approach designed to prevent + timing analysis, making it appropriate for cryptography. *a* and *b* + must both be of the same type: either :class:`str` (ASCII only, as e.g. + returned by :meth:`HMAC.hexdigest`), or any type that supports the + :term:`buffer protocol` (e.g. :class:`bytes`). .. note:: - - While this function reduces the likelihood of leaking the contents of - the expected digest via a timing attack, it still may leak some timing - information when the input values differ in lengths as well as in error - cases like unsupported types or non ASCII strings. When the inputs have - different length the timing depends solely on the length of ``b``. It - is assumed that the expected length of the digest is not a secret, as - it is typically published as part of a file format, network protocol - or API definition. + If *a* and *b* are different lengths, or if an error occurs, + a timing attack may be able to infer information about the types + and lengths of *a* and *b*, but not their values. .. versionadded:: 3.3 |