Documentation
Internals
Internal helpers exposed to CYBERQUEST scripts through CQ.Internals.
Overview
The CQ.Internals namespace provides encryption helpers for use in customizable CYBERQUEST scripts, including Data Transformation Service (DTS) and alert scripts. CYBERQUEST uses AES-256 encryption for passwords.
Available members
| Access path | Exported function |
|---|---|
CQ.Internals.encrypt | Encryption.encrypt |
CQ.Internals.decrypt | Encryption.decrypt |
Usage
encrypt
CQ.Internals.encrypt(clearTxtValue);
| Parameter | Type | Description |
|---|---|---|
clearTxtValue | string | Clear-text value to encrypt. |
Returns the encrypted value produced by the runtime encryption target.
decrypt
CQ.Internals.decrypt(encryptedValue);
| Parameter | Type | Description |
|---|---|---|
encryptedValue | string | Encrypted value to decrypt. |
Returns the decrypted value produced by the runtime encryption target.