h/plugins/hash.py

20 lines
340 B
Python
Raw Normal View History

2009-03-15 06:51:39 +00:00
import hashlib
from util import hook
@hook.command
def md5(input):
return hashlib.md5(input).hexdigest()
2009-03-15 06:51:39 +00:00
@hook.command
def sha1(input):
return hashlib.sha1(input).hexdigest()
2009-03-15 06:51:39 +00:00
@hook.command
def hash(input):
return ', '.join(x + ": " + getattr(hashlib, x)(input).hexdigest()
2009-03-15 06:51:39 +00:00
for x in 'md5 sha1 sha256'.split())