mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2025-03-30 15:08:32 +00:00
34 lines
820 B
JavaScript
34 lines
820 B
JavaScript
import testBigInteger from './biginteger';
|
|
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 () {
|
|
testBigInteger();
|
|
testCipher();
|
|
testHash();
|
|
testCrypto();
|
|
testElliptic();
|
|
testBrainpoolRFC7027();
|
|
testECDH();
|
|
testPKCS5();
|
|
testAESKW();
|
|
testHKDF();
|
|
testGCM();
|
|
testEAX();
|
|
testOCB();
|
|
testRSA();
|
|
testValidate();
|
|
});
|