Interface EncryptedData

The interface for encrypted raw data

interface EncryptedData {
    data: Uint8Array;
    nonce: Uint8Array;
}

Properties

Properties

data: Uint8Array
nonce: Uint8Array