Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Simple Hashlib by Moff
import hashlib
def checkio(plain, algorithm):
return getattr(hashlib, algorithm)(bytes(plain, encoding='utf-8')).hexdigest()
July 28, 2015