Export Subkey class (#1381)

This commit is contained in:
Ali Cherry 2021-07-20 11:54:29 +03:00 committed by GitHub
parent 1ac71a94a5
commit 85d129af77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -11,7 +11,7 @@ export {
generateSessionKey, encryptSessionKey, decryptSessionKeys
} from './openpgp';
export { PrivateKey, PublicKey, readKey, readKeys, readPrivateKey, readPrivateKeys } from './key';
export { PrivateKey, PublicKey, Subkey, readKey, readKeys, readPrivateKey, readPrivateKeys } from './key';
export { Signature, readSignature } from './signature';

View File

@ -16,6 +16,7 @@ import {
import PrivateKey from './private_key.js';
import PublicKey from './public_key.js';
import Subkey from './subkey.js';
export {
readKey,
@ -29,5 +30,6 @@ export {
getPreferredHashAlgo,
createSignaturePacket,
PrivateKey,
PublicKey
PublicKey,
Subkey
};