node-aescrypt
Version:
A node implementation of the AES Crypt <https://www.aescrypt.com/> file encryption format.
14 lines (13 loc) • 444 B
TypeScript
import { Decrypt } from './lib/decrypt';
import { Encrypt } from './lib/encrypt';
import { toStream, withStream } from './lib/util';
export { Encrypt } from './lib/encrypt';
export { Decrypt } from './lib/decrypt';
export { toStream, withStream } from './lib/util';
declare const _default: {
Decrypt: typeof Decrypt;
Encrypt: typeof Encrypt;
toStream: typeof toStream;
withStream: typeof withStream;
};
export default _default;