mirror of
https://github.com/billbuchanan/appliedcrypto.git
synced 2026-02-23 04:07:58 +00:00
6 lines
147 B
Python
6 lines
147 B
Python
import passlib.hash;
|
|
string="hello"
|
|
print ("LM Hash:"+passlib.hash.lmhash.encrypt(string))
|
|
print ("NT Hash:"+passlib.hash.nthash.encrypt(string))
|
|
|