mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2025-03-30 15:08:32 +00:00

The noble-hashes fork uses the same fallback implementation, except BN.js is always imported (due to lib contraints), so a dynamic import is now superfluous
32 lines
857 B
JavaScript
32 lines
857 B
JavaScript
import testX25519 from './x25519.js';
|
|
import testUtil from './util.js';
|
|
import testArmor from './armor.js';
|
|
import testPacket from './packet.js';
|
|
import testSignature from './signature.js';
|
|
import testKey from './key.js';
|
|
import testOpenPGP from './openpgp.js';
|
|
import testConfig from './config.js';
|
|
import testOID from './oid.js';
|
|
import testNistECC from './ecc_nist.js';
|
|
import testSecp256k1 from './ecc_secp256k1.js';
|
|
import testBrainpool from './brainpool.js';
|
|
import testDecompression from './decompression.js';
|
|
import testStreaming from './streaming.js';
|
|
|
|
export default () => describe('General', function () {
|
|
testX25519();
|
|
testUtil();
|
|
testArmor();
|
|
testPacket();
|
|
testSignature();
|
|
testKey();
|
|
testOpenPGP();
|
|
testConfig();
|
|
testOID();
|
|
testNistECC();
|
|
testSecp256k1();
|
|
testBrainpool();
|
|
testDecompression();
|
|
testStreaming();
|
|
});
|