md4.py

Last updated on 28 Aug 2002.

[Home] [Python Stuff]
md4.py - hash calculating algorithm. Used in NTLM authorization method. It is implemented in pure python, so it's quite slow, useful for password hashes and for testing. Requires U32.py module (included in zip).

Usage:

    import md4

    md4_context = md4.new()
    md4_context.update(string)

    hash = md4_context.digest()


Dmitry Rozmanov / 28 August 2002 / dima@xenon.spb.ru