UNPKG

openpgp

Version:

OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.

13 lines (10 loc) 293 B
/** * @fileoverview Functions dealing with storage of the keyring. * @see module:keyring/keyring * @see module:keyring/localstore * @module keyring */ import Keyring from './keyring.js'; import localstore from './localstore.js'; Keyring.localstore = localstore; export default Keyring;