mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 17:07:03 +03:00
Move old OpenPGP.js to /vendors instead of npm
This commit is contained in:
parent
a7ae087f18
commit
5e63adc904
78 changed files with 39023 additions and 60 deletions
21
vendors/openpgp-2.6.2/src/crypto/public_key/index.js
vendored
Normal file
21
vendors/openpgp-2.6.2/src/crypto/public_key/index.js
vendored
Normal 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
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue