2023-10-24
- Change pbkdf2 default params to enhance security: https://github.com/entronad/crypto-es/security/advisories/GHSA-mpj8-q39x-wq5h
2023-07-25
- Declare no side effects for tree shaking: #37
2023-07-17
- Remove Math.random() runtime console warning. It is not always wanted to show in in the client consle when Math.random() has to be used.
2023-07-12
- upgrade global crypto assignment with typeof: #34
2023-07-12
- Wrap the global crypto assignment with try/catch: #34
2023-07-10
- Enhance the support of TypeScript. Now every js file has its own d.ts file for partially importing in TypeScript. And all types has been tested.
- A real random generator from globalThis.crypto is used instead of Math.random. If the environment doesn't support globalThis(or global/window/self/frames), it will rollback to Math.random with a warning log.
- Fix the TripleDes/Des issue: #22
- Fix the cipher-core issue of CryptoJS: https://github.com/brix/crypto-js/commit/dcc3848f5de5208bca73f36c0ed77fa192ee2ea8 , https://github.com/brix/crypto-js/commit/09ee2ab282176f235f26d6a2d4e039cbd6eb3494
- Add base64url algorithm.
- Add blowfish algorithm.
2021-02-08
2020-08-01
2020-05-19
- Improve some param types in index.d.ts.
2020-04-04
- Add change logs link to readme.
2020-04-04
- Impliment this PR of CryptoJS, witch is about TripleDES key.
- We will not use secure random like CryptoJS for now, for it has some issues.
- Change Cyphers' keySize and ivSize to static properties to Fix some issues.
- Fix some issues in type file.
2020-02-21
- Fix guides for TypeScript usage.
2020-01-23
- Add guides for TypeScript usage.
2020-01-09
- Add types for TypeScript usage.
- Update license to 2020.
2019-07-15
- Remove loader.mjs, insead using package.json type field for ECMAScript Modules.
- Update README.md.
2019-07-12
- Add support for ArrayBuffer and TypedArray.
- Change some inner object names in case of confusion for partially import.
2019-01-20
- Update README.md.
2019-01-19
- Add keywords.
2019-01-19
- Initial version.
- Impliment all CryptoJS APIs.