1998-08-10 16:42:37 -03:00
|
|
|
\section{\module{md5} ---
|
1999-04-23 19:03:00 -03:00
|
|
|
MD5 message digest algorithm}
|
1998-07-23 14:59:49 -03:00
|
|
|
|
1999-04-23 19:03:00 -03:00
|
|
|
\declaremodule{builtin}{md5}
|
1998-07-23 14:59:49 -03:00
|
|
|
\modulesynopsis{RSA's MD5 message digest algorithm.}
|
|
|
|
|
1994-01-01 21:22:07 -04:00
|
|
|
|
|
|
|
This module implements the interface to RSA's MD5 message digest
|
1998-04-04 02:35:41 -04:00
|
|
|
\index{message digest, MD5}
|
1998-02-09 15:16:20 -04:00
|
|
|
algorithm (see also Internet \rfc{1321}). Its use is quite
|
2000-09-18 12:34:57 -03:00
|
|
|
straightforward:\ use \function{new()} to create an md5 object.
|
1995-03-17 12:07:09 -04:00
|
|
|
You can now feed this object with arbitrary strings using the
|
1998-04-04 02:35:41 -04:00
|
|
|
\method{update()} method, and at any point you can ask it for the
|
1995-03-17 12:07:09 -04:00
|
|
|
\dfn{digest} (a strong kind of 128-bit checksum,
|
2000-07-16 16:01:10 -03:00
|
|
|
a.k.a. ``fingerprint'') of the concatenation of the strings fed to it
|
1998-04-04 02:35:41 -04:00
|
|
|
so far using the \method{digest()} method.
|
|
|
|
\index{checksum!MD5}
|
1995-03-17 12:07:09 -04:00
|
|
|
|
1998-04-04 02:35:41 -04:00
|
|
|
For example, to obtain the digest of the string \code{'Nobody inspects
|
|
|
|
the spammish repetition'}:
|
1994-01-01 21:22:07 -04:00
|
|
|
|
1998-02-13 02:58:54 -04:00
|
|
|
\begin{verbatim}
|
1995-01-04 15:17:34 -04:00
|
|
|
>>> import md5
|
|
|
|
>>> m = md5.new()
|
1995-03-17 12:07:09 -04:00
|
|
|
>>> m.update("Nobody inspects")
|
|
|
|
>>> m.update(" the spammish repetition")
|
1994-01-01 21:22:07 -04:00
|
|
|
>>> m.digest()
|
2001-01-24 13:19:08 -04:00
|
|
|
'\xbbd\x9c\x83\xdd\x1e\xa5\xc9\xd9\xde\xc9\xa1\x8d\xf0\xff\xe9'
|
1998-02-13 02:58:54 -04:00
|
|
|
\end{verbatim}
|
1998-04-04 02:35:41 -04:00
|
|
|
|
1994-01-01 21:22:07 -04:00
|
|
|
More condensed:
|
|
|
|
|
1998-02-13 02:58:54 -04:00
|
|
|
\begin{verbatim}
|
1995-03-17 12:07:09 -04:00
|
|
|
>>> md5.new("Nobody inspects the spammish repetition").digest()
|
2001-01-24 13:19:08 -04:00
|
|
|
'\xbbd\x9c\x83\xdd\x1e\xa5\xc9\xd9\xde\xc9\xa1\x8d\xf0\xff\xe9'
|
1998-02-13 02:58:54 -04:00
|
|
|
\end{verbatim}
|
1995-01-04 15:17:34 -04:00
|
|
|
|
|
|
|
\begin{funcdesc}{new}{\optional{arg}}
|
1995-03-17 12:07:09 -04:00
|
|
|
Return a new md5 object. If \var{arg} is present, the method call
|
|
|
|
\code{update(\var{arg})} is made.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
1995-01-04 15:17:34 -04:00
|
|
|
\begin{funcdesc}{md5}{\optional{arg}}
|
|
|
|
For backward compatibility reasons, this is an alternative name for the
|
1998-04-04 02:35:41 -04:00
|
|
|
\function{new()} function.
|
1995-01-04 15:17:34 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
1995-03-17 12:07:09 -04:00
|
|
|
An md5 object has the following methods:
|
1994-01-01 21:22:07 -04:00
|
|
|
|
1998-04-04 02:35:41 -04:00
|
|
|
\begin{methoddesc}[md5]{update}{arg}
|
1995-03-17 12:07:09 -04:00
|
|
|
Update the md5 object with the string \var{arg}. Repeated calls are
|
|
|
|
equivalent to a single call with the concatenation of all the
|
|
|
|
arguments, i.e.\ \code{m.update(a); m.update(b)} is equivalent to
|
|
|
|
\code{m.update(a+b)}.
|
1998-04-04 02:35:41 -04:00
|
|
|
\end{methoddesc}
|
1994-01-01 21:22:07 -04:00
|
|
|
|
1998-04-04 02:35:41 -04:00
|
|
|
\begin{methoddesc}[md5]{digest}{}
|
|
|
|
Return the digest of the strings passed to the \method{update()}
|
2000-09-18 12:34:57 -03:00
|
|
|
method so far. This is a 16-byte string which may contain
|
1995-03-17 12:07:09 -04:00
|
|
|
non-\ASCII{} characters, including null bytes.
|
1998-04-04 02:35:41 -04:00
|
|
|
\end{methoddesc}
|
1994-01-01 21:22:07 -04:00
|
|
|
|
2000-08-15 03:00:28 -03:00
|
|
|
\begin{methoddesc}[md5]{hexdigest}{}
|
|
|
|
Like \method{digest()} except the digest is returned as a string of
|
2000-09-18 12:34:57 -03:00
|
|
|
length 32, containing only hexadecimal digits. This may
|
|
|
|
be used to exchange the value safely in email or other non-binary
|
|
|
|
environments.
|
2000-08-15 03:00:28 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
1998-04-04 02:35:41 -04:00
|
|
|
\begin{methoddesc}[md5]{copy}{}
|
1995-03-17 12:07:09 -04:00
|
|
|
Return a copy (``clone'') of the md5 object. This can be used to
|
|
|
|
efficiently compute the digests of strings that share a common initial
|
|
|
|
substring.
|
1998-04-04 02:35:41 -04:00
|
|
|
\end{methoddesc}
|
2000-09-14 18:47:32 -03:00
|
|
|
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
\seemodule{sha}{Similar module implementing the Secure Hash
|
|
|
|
Algorithm (SHA). The SHA algorithm is considered a
|
|
|
|
more secure hash.}
|
|
|
|
\end{seealso}
|