Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Simple Hashlib by flpo
import hashlib
def checkio(hashed_string, algorithm):
return (getattr(hashlib, algorithm)(hashed_string.encode('utf8'))).hexdigest()
June 27, 2017