asd/asd-pc/node_modules/aes-decrypter/src/index.js
愉快的大福 eb8378e551 init
2024-11-21 11:06:22 +08:00

19 lines
348 B
JavaScript

/**
* @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 {
decrypt,
Decrypter,
AsyncStream
};