Update hashing method calls in d_01.py

This commit is contained in:
Bill Buchanan
2026-01-15 17:31:49 +00:00
committed by GitHub
parent 1e5cb49c2f
commit 897afe194e

View File

@@ -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))