From 9fd16a7e4914571cd80847597def2ef864ef5f4b Mon Sep 17 00:00:00 2001 From: Bill Buchanan Date: Thu, 11 Feb 2021 18:07:34 +0000 Subject: [PATCH] Update README.md --- unit03_hashing/lab/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: