hosanna-ui-docs - v0.9.0
    Preparing search index...
    • Decrypts a base64-encoded ciphertext using the specified format, key, and IV.

      Parameters

      • format: string

        The decryption format (e.g., AES).

      • keyHex: string

        The decryption key in hexadecimal format.

      • ivHex: string

        The initialization vector in hexadecimal format.

      • base64CipherText: string

        The ciphertext in base64 format to decrypt.

      • padding: boolean = true

        Whether to use padding (default: true).

      Returns null | string

      The decrypted plaintext string, or null if decryption fails.