Interface EnclosedDecryptParams

Parameters for enclosed decryption operations.

Note: This interface is intended to be used with a closure that captures the key and algorithm-specific parameters so that arbitrary data can be decrypted without exposing the key or parameters to the caller.

interface EnclosedDecryptParams {
    data: Uint8Array;
}

Properties

Properties

data: Uint8Array

Data to be decrypted.