openpgpjs/test/crypto/index.js
larabr 8071e078f6 Move Brainpool curves implementation from noble-curves fork
The main repo doesn't implement them
2024-05-06 14:33:12 +02:00

32 lines
757 B
JavaScript

import testCipher from './cipher';
import testHash from './hash';
import testCrypto from './crypto';
import testElliptic from './elliptic';
import testBrainpoolRFC7027 from './brainpool_rfc7027';
import testECDH from './ecdh';
import testPKCS5 from './pkcs5';
import testAESKW from './aes_kw';
import testHKDF from './hkdf';
import testGCM from './gcm';
import testEAX from './eax';
import testOCB from './ocb';
import testRSA from './rsa';
import testValidate from './validate';
export default () => describe('Crypto', function () {
testCipher();
testHash();
testCrypto();
testElliptic();
testBrainpoolRFC7027();
testECDH();
testPKCS5();
testAESKW();
testHKDF();
testGCM();
testEAX();
testOCB();
testRSA();
testValidate();
});