HITE Encryption
HULYAS Information-Theoretic Encryption — AES-256-GCM with PBKDF2-SHA256 key derived from HulyaPulse constants. Includes Landauer certificate.
| Endpoint | POST /api/hite/encrypt |
| Auth | api-key |
| Rate limit | 30/min |
| Category | security |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
plaintext | string | Yes | Data to encrypt (max 64KB). |
Returns
{ ciphertext, iv, tag, algorithm, keyDerivation, landauerCertificate }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"plaintext": "<plaintext>"
}' \
"https://zeqsdk.com/api/hite/encrypt"
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-encrypt.