Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Naive solution in Uncategorized category for Simple Hashlib by Sim0000
import hashlib
def checkio(string, algorithm):
h = hashlib.new(algorithm)
h.update(string.encode())
return h.hexdigest()
May 18, 2014
Comments: