
- Add `PrivateKey` and `PublicKey` classes. A `PrivateKey` can always be passed where a `PublicKey` key is expected, but not vice versa. - Unexport `Key`, and export `PrivateKey` and `PublicKey`. - Rename `Key.packetlist2structure` to `Key.packetListToStructure`. - Change `Key.update` to return a new updated key, rather than modifying the destination one in place. - Add `openpgp.readPrivateKey` and `openpgp.readPrivateKeys` to avoid having to downcast the result of `readKey(s)` in TypeScript.
29 lines
801 B
JavaScript
29 lines
801 B
JavaScript
/**
|
|
* Export high level API functions.
|
|
* Usage:
|
|
*
|
|
* import { encrypt } from 'openpgp';
|
|
* encrypt({ message, publicKeys });
|
|
*/
|
|
export {
|
|
encrypt, decrypt, sign, verify,
|
|
generateKey, reformatKey, revokeKey, decryptKey, encryptKey,
|
|
generateSessionKey, encryptSessionKey, decryptSessionKeys
|
|
} from './openpgp';
|
|
|
|
export { PrivateKey, PublicKey, readKey, readKeys, readPrivateKey, readPrivateKeys } from './key';
|
|
|
|
export { Signature, readSignature } from './signature';
|
|
|
|
export { Message, readMessage, createMessage } from './message';
|
|
|
|
export { CleartextMessage, readCleartextMessage, createCleartextMessage } from './cleartext';
|
|
|
|
export * from './packet';
|
|
|
|
export * from './encoding/armor';
|
|
|
|
export { default as enums } from './enums';
|
|
|
|
export { default as config } from './config/config';
|