1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/** * @file index.js * * Index module to easily import the primary components of AES-128 * decryption. Like this: * * ```js * import {Decrypter, decrypt, AsyncStream} from 'aes-decrypter'; * ``` */ import {decrypt, Decrypter} from './decrypter'; import AsyncStream from './async-stream'; export default { decrypt, Decrypter, AsyncStream };