interface IAesCtr {
    close?: () => void;
    process: (data: Uint8Array) => Uint8Array;
}

Properties

Properties

close?: () => void
process: (data: Uint8Array) => Uint8Array