openpgp
Version:
OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.
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;