This repository has been archived on 2023-04-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
CloudBot/plugins/hash.py
2012-10-19 00:21:37 +13:00

9 lines
232 B
Python
Executable file

import hashlib
from util import hook
@hook.command
def hash(inp):
"hash <text> -- Returns hashes of <text>."
return ', '.join(x + ": " + getattr(hashlib, x)(inp).hexdigest()
for x in ['md5', 'sha1', 'sha256'])