base64_5.py 131 B

123
  1. def hashing(password):
  2. hash1 = hashlib.md5(str.encode(password)).hexdigest()
  3. print ("your hashed password is:", hash1,"\n")