mirror of
https://github.com/billbuchanan/appliedcrypto.git
synced 2026-02-21 11:18:02 +00:00
Update hashing method calls in d_01.py
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import passlib.hash;
|
||||
string="hello"
|
||||
print ("LM Hash:"+passlib.hash.lmhash.encrypt(string))
|
||||
print ("NT Hash:"+passlib.hash.nthash.encrypt(string))
|
||||
print ("LM Hash:"+passlib.hash.lmhash.hash(string))
|
||||
print ("NT Hash:"+passlib.hash.nthash.hash(string))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user