"Python" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
> here's an example:
> [EMAIL PROTECTED]:~% echo "hello" | md5
> b1946ac92492d2347c6235b4d2611184
> How do I get the same results?
Checksum the same string.
>>> md5.new("hello\n").hexdigest()
'b1946ac92492d2347c6235b4d2611184'
--
http://mail.python.org/mailman/listinfo/python-list
