larabr a6283e64cc Drop internal cipher/aes module
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.
2024-02-27 14:43:24 +01:00

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();
});