mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2025-06-15 10:46:40 +00:00

The module was barely used, and its presence confusing, since WebCrypto or asmcrypto are often directly used and usable instead. Also, use AES_CBC instead of AES_ECB for single-block encryption, so that we can drop support for the latter in the asmcrypto lib.
12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
import testBlowfish from './blowfish';
|
|
import testCAST5 from './cast5';
|
|
import testDES from './des';
|
|
import testTwofish from './twofish';
|
|
|
|
export default () => describe('Cipher', function () {
|
|
testBlowfish();
|
|
testCAST5();
|
|
testDES();
|
|
testTwofish();
|
|
});
|