Backport 51663:

Doc fix: hashlib objects don't always return a digest of 16 bytes.
This commit is contained in:
Neal Norwitz 2006-09-03 00:04:26 +00:00
parent 38b9460b4a
commit f07b590d7e
1 changed files with 2 additions and 2 deletions

View File

@ -86,8 +86,8 @@ arguments: \code{m.update(a); m.update(b)} is equivalent to
\begin{methoddesc}[hash]{digest}{}
Return the digest of the strings passed to the \method{update()}
method so far. This is a 16-byte string which may contain
non-\ASCII{} characters, including null bytes.
method so far. This is a string of \member{digest_size} bytes which may
contain non-\ASCII{} characters, including null bytes.
\end{methoddesc}
\begin{methoddesc}[hash]{hexdigest}{}