Skip to main content

HITE Decryption

Decrypt HITE-encrypted data. GCM authentication tag verified — integrity guaranteed.

EndpointPOST /api/hite/decrypt
Authapi-key
Rate limit30/min
Categorysecurity

Parameters

NameTypeRequiredDescription
ciphertextstringYesEncrypted data (hex).
ivstringYesInitialization vector (hex).
tagstringYesGCM auth tag (hex, 32 chars).

Returns

{ plaintext, verified, algorithm }

Example

curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"ciphertext": "<ciphertext>",
"iv": "<iv>",
"tag": "<tag>"
}' \
"https://zeqsdk.com/api/hite/decrypt"

This protocol is a named building block — one of the operations you compose inside a state contract. Call it directly with the request above, or invoke it from a contract that fires on your machine's clock. Browse the whole library at GET /api/protocols; fetch this one at GET /api/protocols/hite-decrypt.