fork-openpgpjs/test/general/index.js
larabr 8854b097b4 Use native BigInt when available instead of bn.js (#1119)
In the lightweight build, lazily load bn.js only when necessary.

Also, use Uint8Arrays instead of strings in PKCS1 padding functions, and
check that the leading zero is present when decoding EME-PKCS1 padding.
2021-02-09 19:25:20 +01:00

21 lines
554 B
JavaScript

module.exports = () => describe('General', function () {
require('./util.js')();
require('./biginteger.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')();
});