Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Simple Hashlib by Sillte
import hashlib
def checkio(hashed_string, algorithm):
return getattr(hashlib, algorithm)(hashed_string.encode("utf8")).hexdigest()
April 26, 2018