Move old OpenPGP.js to /vendors instead of npm

This commit is contained in:
djmaze 2021-05-01 15:10:04 +02:00
parent a7ae087f18
commit 5e63adc904
78 changed files with 39023 additions and 60 deletions

View file

@ -0,0 +1,21 @@
/**
* @requires crypto/public_key/dsa
* @requires crypto/public_key/elgamal
* @requires crypto/public_key/rsa
* @module crypto/public_key
*/
'use strict';
/** @see module:crypto/public_key/rsa */
import rsa from './rsa.js';
/** @see module:crypto/public_key/elgamal */
import elgamal from './elgamal.js';
/** @see module:crypto/public_key/dsa */
import dsa from './dsa.js';
export default {
rsa: rsa,
elgamal: elgamal,
dsa: dsa
};