| Field | Value |
|---|---|
| Name | hash |
| Title | Hash Calculator |
| Description | Compute a cryptographic hash (sha256 or sha3) 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"
}
}
}