diff --git a/plugins/hash.py b/plugins/hash.py index b7a00ac..f9bb266 100755 --- a/plugins/hash.py +++ b/plugins/hash.py @@ -2,30 +2,6 @@ import hashlib from util import hook -@hook.command -def md5(inp): - "md5 -- Returns a md5 hash of ." - return hashlib.md5(inp).hexdigest() - - -@hook.command -def sha1(inp): - "sha1 -- Returns a sha1 hash of ." - return hashlib.sha1(inp).hexdigest() - - -@hook.command -def sha256(inp): - "sha256 -- Returns a sha256 hash of ." - return hashlib.sha256(inp).hexdigest() - - -@hook.command -def sha512(inp): - "sha512 -- Returns a sha512 hash of ." - return hashlib.sha512(inp).hexdigest() - - @hook.command def hash(inp): "hash -- Returns hashes of ."