diff options
author | Barry Warsaw <barry@python.org> | 2000-08-15 06:00:28 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2000-08-15 06:00:28 (GMT) |
commit | 4ef4be53ac907941a22b5b5fdc5b540bf9510759 (patch) | |
tree | 5785fb68be788f92ba5b89f95f9334e88f4199ff /Doc/lib/libmd5.tex | |
parent | 3ec0fbb2995d9ceb6cbb4f7e8234b3ad80dc5c05 (diff) | |
download | cpython-4ef4be53ac907941a22b5b5fdc5b540bf9510759.zip cpython-4ef4be53ac907941a22b5b5fdc5b540bf9510759.tar.gz cpython-4ef4be53ac907941a22b5b5fdc5b540bf9510759.tar.bz2 |
Added description of the md5.hexdigest() method.
Diffstat (limited to 'Doc/lib/libmd5.tex')
-rw-r--r-- | Doc/lib/libmd5.tex | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/lib/libmd5.tex b/Doc/lib/libmd5.tex index 8800e50..7400a2e 100644 --- a/Doc/lib/libmd5.tex +++ b/Doc/lib/libmd5.tex @@ -60,6 +60,11 @@ method so far. This is an 16-byte string which may contain non-\ASCII{} characters, including null bytes. \end{methoddesc} +\begin{methoddesc}[md5]{hexdigest}{} +Like \method{digest()} except the digest is returned as a string of +length 32, containing only hexadecimal digits. +\end{methoddesc} + \begin{methoddesc}[md5]{copy}{} Return a copy (``clone'') of the md5 object. This can be used to efficiently compute the digests of strings that share a common initial |