LanManager Hash

This class implements the LanManager Hash (aka LanMan or LM hash). It was used by early versions of Microsoft Windows to store user passwords, until it was supplanted (though not entirely replaced) by the nthash algorithm in Windows NT. It continues to crop up in production due to its integral role in the legacy NTLM authentication protocol. This class can be used directly as follows:

>>> from passlib.hash import lmhash

>>> # hash password
>>> h = lmhash.hash("password")
>>> h
'e52cac67419a9a224a3b108f3fa6cb6d'

>>> # verify correct password
>>> lmhash.verify("password", h)
True
>>> # verify incorrect password
>>> lmhash.verify("secret", h)
False

This class implements the Lan Manager Password hash, and follows the PasswordHash API.

It has no salt and a single fixed round.

know more : lm hash generator

Comments

  1. Your Affiliate Money Making Machine is waiting -

    Plus, getting it running is as simple as 1 . 2 . 3!

    This is how it all works...

    STEP 1. Tell the system which affiliate products the system will promote
    STEP 2. Add push button traffic (it takes JUST 2 minutes)
    STEP 3. Watch the system explode your list and upsell your affiliate products for you!

    Are you ready to make money ONLINE??

    Click here to check it out

    ReplyDelete

Post a Comment

Popular posts from this blog

Implementing Core Cisco ASA Security (SASAC)

Netware Makes a Splash

How CrackStation Works