Interface ZIF_LLM_ENCRYPTION
AI Generated documentation.
Overview
The ZIF_LLM_ENCRYPTION interface provides encryption and decryption capabilities through two public methods:
DECRYPT: Converts encrypted data (XSTRING) into a decrypted stringENCRYPT: Converts an unencrypted string into encrypted data (XSTRING)
Both methods can raise the following exceptions:
ZCX_LLM_VALIDATIONZCX_LLM_AUTHORIZATION
classDiagram
class ZIF_LLM_ENCRYPTION {
+decrypt(encrypted: XSTRING) string
+encrypt(unencrypted: string) XSTRING
}
Dependencies
ZCX_LLM_VALIDATIONexception classZCX_LLM_AUTHORIZATIONexception class