
This PR adds four config options to configure whether and how to load indutny/elliptic: use_indutny_elliptic, external_indutny_elliptic, indutny_elliptic_path and indutny_elliptic_fetch_options. Also: - Use tweetnacl.js instead of indutny/elliptic for curve25519 key generation - Don't initialize indutny's curve25519, improving performance when using that curve - Verify NIST signatures using Web Crypto instead of indutny/elliptic when not streaming - Move KeyPair.sign/verify to ecdsa.js - Move KeyPair.derive to ecdh.js - Move keyFromPrivate and keyFromPublic to a new indutnyKey.js file
20 lines
467 B
JavaScript
20 lines
467 B
JavaScript
describe('General', function () {
|
|
require('./util.js');
|
|
require('./armor.js');
|
|
require('./packet.js');
|
|
require('./keyring.js');
|
|
require('./signature.js');
|
|
require('./key.js');
|
|
require('./openpgp.js');
|
|
require('./hkp.js');
|
|
require('./wkd.js');
|
|
require('./oid.js');
|
|
require('./ecc_nist.js');
|
|
require('./ecc_secp256k1.js');
|
|
require('./x25519.js');
|
|
require('./brainpool.js');
|
|
require('./decompression.js');
|
|
require('./streaming.js');
|
|
});
|
|
|