Removed individual hash commands, use .hash

This commit is contained in:
Luke Rogers 2012-10-19 00:21:37 +13:00
parent 2bdb7a7915
commit 70e22af2cd

View file

@ -2,30 +2,6 @@ import hashlib
from util import hook
@hook.command
def md5(inp):
"md5 <text> -- Returns a md5 hash of <text>."
return hashlib.md5(inp).hexdigest()
@hook.command
def sha1(inp):
"sha1 <text> -- Returns a sha1 hash of <text>."
return hashlib.sha1(inp).hexdigest()
@hook.command
def sha256(inp):
"sha256 <text> -- Returns a sha256 hash of <text>."
return hashlib.sha256(inp).hexdigest()
@hook.command
def sha512(inp):
"sha512 <text> -- Returns a sha512 hash of <text>."
return hashlib.sha512(inp).hexdigest()
@hook.command
def hash(inp):
"hash <text> -- Returns hashes of <text>."