| Field | Value |
|---|---|
| Name | hash |
| Title | Hash Calculator |
| Description | Compute a SHA-256 or SHA3 hash of supplied data. |
Input Schema
{
"type": "object",
"required": ["value"],
"properties": {
"algorithm": {
"type": "string",
"description": "Hash algorithm to use (defaults to sha3)",
"enum": ["sha256",
"sha3"]
},
"value": {
"type": "string",
"description": "Value to hash"
}
}
}Output Schema
{
"type": "object",
"properties": {
"algorithm": {
"type": "string"
},
"message": {
"type": "string",
"description": "Optional human-readable message"
},
"hash": {
"type": "string",
"description": "Hex encoded digest"
}
}
}