You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
356 B
19 lines
356 B
/**
|
|
* @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
|
|
};
|