# Cryptography module - high value file import hashlib def hash_password(password): # BAD: MD5 for password hashing return hashlib.md5(password.encode()).hexdigest()