Interface EnclosedEncryptParams

Parameters for enclosed encryption 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 encrypted without exposing the key or parameters to the caller.

interface EnclosedEncryptParams {
    data: Uint8Array;
}

Properties

Properties

data: Uint8Array

Data to be encrypted.