hash_text
InactiveTool of com.gadgethumans.swarm/x402-middleware
Generate a cryptographic hash of input text. Use this for password hashing, data integrity checks, digital signatures, or any scenario requiring a one-way hash of a string. Parameters: text — The text to hash (required). algorithm — Hashing algorithm: "md5", "sha1", "sha256", or "sha512" (default: "sha256"). SHA-256 and SHA-512 are recommended for security-sensitive use. encoding — Output encoding: "hex" or "base64" (default: "hex").
Parameters schema
{
"type": "object",
"title": "hash_textArguments",
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"title": "Text"
},
"encoding": {
"type": "string",
"title": "Encoding",
"default": "hex"
},
"algorithm": {
"type": "string",
"title": "Algorithm",
"default": "sha256"
}
}
}Parent server
com.gadgethumans.swarm/x402-middleware
https://github.com/scotia1973-bot/gadgethumans-x402
2/7 registries