Skip to content

Secure Operations (Non-Streaming)

Non-streaming endpoints handle cryptographic operations with Base64-encoded data in JSON format. Ideal for smaller data (up to 5 MB).

Available Operations

  • Encrypt Data (/api/crypto/encrypt)
  • Decrypt Data (/api/crypto/decrypt)
  • Sign Data (/api/crypto/sign)
  • Verify Signature (/api/crypto/verify)
  • Re-encrypt Data (/api/crypto/reencrypt)
  • Re-sign Data (/api/crypto/resign)

Common request format:

{
  "kid": "key-identifier",
  "data": "Base64-encoded-data"
}

Example: Encryption Request

{
  "kid": "myKeyKid",
  "data": "SGVsbG8gQW5rYQ=="
}

Example: Encryption Response

{
  "encryptedData": "Q3lwaGVyZWRUZXh0RW5jcnlwdGVk"
}

For more details and error responses, consult the Swagger UI.