diff options
Diffstat (limited to 'Doc/library/hmac.rst')
-rw-r--r-- | Doc/library/hmac.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/hmac.rst b/Doc/library/hmac.rst index 2ea3fc6..a8ca3af 100644 --- a/Doc/library/hmac.rst +++ b/Doc/library/hmac.rst @@ -74,7 +74,7 @@ This module also provides the following helper function: 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`). + buffer protocol (e.g. :class:`bytes`). .. note:: If *a* and *b* are different lengths, or if an error occurs, |