UNPKG

crypto-ts

Version:

Typescript library of crypto standards.

9 lines (8 loc) 208 B
import { BlockCipherMode } from './BlockCipherMode'; /** * Cipher Block Chaining mode. */ export declare abstract class CBC extends BlockCipherMode { static Encryptor: any; static Decryptor: any; }