h/plugins/hash.py

15 lines
299 B
Python

import hashlib
#command
def md5(input):
return hashlib.md5(input).hexdigest()
#command
def sha1(input):
return hashlib.sha1(input).hexdigest()
#command
def hash(input):
return ', '.join(x + ": " + getattr(hashlib, x)(input).hexdigest()
for x in 'md5 sha1 sha256'.split())