Backport r58868:
  Fixes Issue 1385: The hmac module now computes the correct hmac when using
  hashes with a block size other than 64 bytes (such as sha384 and sha512).
diff --git a/Doc/lib/libhashlib.tex b/Doc/lib/libhashlib.tex
index 17f5179..410b17a 100644
--- a/Doc/lib/libhashlib.tex
+++ b/Doc/lib/libhashlib.tex
@@ -72,7 +72,11 @@
 returned by the constructors:
 
 \begin{datadesc}{digest_size}
-  The size of the resulting digest in bytes.
+  The size of the resulting hash in bytes.
+\end{datadesc}
+
+\begin{datadesc}{block_size}
+  The internal block size of the hash algorithm in bytes.
 \end{datadesc}
 
 A hash object has the following methods: