for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import hashlib
def sha512(password: str) -> str:
"""Return a sha512 hash of the given password."""
return hashlib.sha512(password.encode('utf-8')).hexdigest()