diff --git a/unit03_hashing/lab/README.md b/unit03_hashing/lab/README.md index 7409824..1b16a9e 100644 --- a/unit03_hashing/lab/README.md +++ b/unit03_hashing/lab/README.md @@ -372,7 +372,7 @@ import passlib.hash; salt="PkWj6gM4" string="hello" -print ("APR1:"+passlib.hash.apr_md5_crypt.encrypt(string, salt=salt)) +print ("APR1:"+passlib.hash.apr_md5_crypt.hash(string, salt=salt)) ``` We can created a simple Python program with the passlib library, and add the same salt as the example above: