/api/agent/entrypoints/hash-text/invokeReturn SHA-256 and SHA-512 hashes for bounded text input with deterministic evidence.
Bounded deterministic text hashing. No upstream calls and no private data.
{
"properties": {
"text": {
"maxLength": 100000,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}{
"properties": {
"length": {
"type": "integer"
},
"sha256": {
"type": "string"
},
"sha512": {
"type": "string"
}
},
"required": [
"sha256",
"sha512"
],
"type": "object"
}{
"text": "hello"
}{
"length": 5,
"sha256": "2cf24dba...",
"sha512": "9b71d224..."
}