import { BlockCipherModeAlgorithm } from './BlockCipherModeAlgorithm'; export declare class ECBEncryptor extends BlockCipherModeAlgorithm { /** * Processes the data block at offset. * * @param words The data words to operate on. * @param offset The offset where the block starts. * * @example * * mode.processBlock(data.words, offset); */ processBlock(words: Array, offset: number): void; }