mirror of
https://gitlab.com/octospacc/WinDog.git
synced 2025-04-06 14:31:00 +02:00
25 lines
932 B
Python
Executable File
25 lines
932 B
Python
Executable File
# ================================== #
|
|
# WinDog multi-purpose chatbot #
|
|
# Licensed under AGPLv3 by OctoSpacc #
|
|
# ================================== #
|
|
|
|
import hashlib
|
|
|
|
def cHash(context, data) -> None:
|
|
algorithm = data.command.arguments["algorithm"]
|
|
if data.command.body and algorithm in hashlib.algorithms_available:
|
|
hashed = hashlib.new(algorithm, algorithm.join(data.Body.split(algorithm)[1:]).strip().encode()).hexdigest()
|
|
SendMsg(context, {
|
|
"TextPlain": hashed,
|
|
"TextMarkdown": MarkdownCode(hashed, True),
|
|
})
|
|
else:
|
|
SendMsg(context, {"Text": choice(Locale.__('hash.usage')).format(data.command.tokens[0], hashlib.algorithms_available)})
|
|
|
|
RegisterModule(name="Hashing", group="Geek", summary="Functions for hashing of textual content.", endpoints={
|
|
"Hash": CreateEndpoint(names=["hash"], summary="Responds with the hash-sum of a message received.", handler=cHash, arguments={
|
|
"algorithm": True,
|
|
}),
|
|
})
|
|
|