HITE Decryption
Decrypt HITE-encrypted data. GCM authentication tag verified — integrity guaranteed.
| Endpoint | POST /api/hite/decrypt |
| Auth | api-key |
| Rate limit | 30/min |
| Category | security |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ciphertext | string | Yes | Encrypted data (hex). |
iv | string | Yes | Initialization vector (hex). |
tag | string | Yes | GCM 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.