Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Simple Hashlib by oba-ba
import hashlib
def checkio(hashed_string, algorithm):
return getattr(hashlib, algorithm)(hashed_string.encode("utf-8")).hexdigest()
June 24, 2019