diff --git a/plugins/cypher.py b/plugins/cypher.py index 1527778..f16fc2e 100755 --- a/plugins/cypher.py +++ b/plugins/cypher.py @@ -35,3 +35,9 @@ def decypher(inp): passwd = inp.split(" ")[0] inp = " ".join(inp.split(" ")[1:]) return decode(passwd,inp) + + +@hook.command +def rot13(inp): + """rot13 -- Encode with rot13.""" + return inp.encode('rot13')