crypto-ts
Version:
Typescript library of crypto standards.
15 lines (14 loc) • 456 B
TypeScript
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<number>, offset: number): void;
}