Skip to content

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 pathExported function
CQ.Internals.encryptEncryption.encrypt
CQ.Internals.decryptEncryption.decrypt

Usage

encrypt

CQ.Internals.encrypt(clearTxtValue);
ParameterTypeDescription
clearTxtValuestringClear-text value to encrypt.

Returns the encrypted value produced by the runtime encryption target.

decrypt

CQ.Internals.decrypt(encryptedValue);
ParameterTypeDescription
encryptedValuestringEncrypted value to decrypt.

Returns the decrypted value produced by the runtime encryption target.