tenvoy
Version:
PGP, NaCl, and PBKDF2 in node.js and the browser (hashing, random, encryption, decryption, signatures, conversions), used by TogaTech.org
21 lines (16 loc) • 348 B
JavaScript
/**
* @fileoverview OpenPGP packet types
* @see module:packet/all_packets
* @see module:packet/clone
* @see module:packet.List
* @module packet
*/
import * as packets from './all_packets';
import * as clone from './clone';
import List from './packetlist';
const mod = {
List,
clone
};
Object.assign(mod, packets);
export default mod;