Files
appliedcrypto/unit03_hashing/src/e_01.py
billbuchanan 44789e8d3a Update
2021-01-18 20:47:18 +00:00

8 lines
125 B
Python

import passlib.hash;
salt="PkWj6gM4"
string="hello"
print ("APR1:"+passlib.hash.apr_md5_crypt.encrypt(string, salt=salt))