cryptojs-extension icon indicating copy to clipboard operation
cryptojs-extension copied to clipboard

Extensions for CryptoJS containing AES-CMAC, AES-SIV and AES-EAX implementations

Results 8 cryptojs-extension issues
Sort by recently updated
recently updated
newest added

I have use this command `npm i crypto-js` to install the package. Package install successfully. I have import all libraries but I am unable to access `AES.encrypt() `and `AES.decrypt()` method....

Sorry for the delay, but here's the patch for #2 to support Node.js. Packed (standalone) browser files are in `build`, and Node-style dynamic dependency files are in `build_node`. I also...

```javascript typeof obj.words === "array" ``` This will never be true, since `typeof [1, 2]` is `object`. Perhaps we shall change it into `Array.isArray`?

You mention in the `README` that the library won't work in Node.js -- is this still true? What's the problem, and what would it take to address it? I'd be...

I want use it like this picture. ![image](https://user-images.githubusercontent.com/28092539/44964649-2ceb2b00-af64-11e8-86e2-25f75cd224c1.png) The code is: function test3() { let vec = { key: "8395FCF1E95BEBD697BD010BC766AAC3", nonce: "22E7ADD93CFC6393C57EC0B3C17D6B44", header: "126735FCC320D25A", msg: "CA40D7446E545FFAED3BD12A740A659FFBBB3CEAB7", msg2: "6CF36720872B8513F6EAB1A8A44438D5EF11", ct: "CB8920F87A6C75CFF39627B56E3ED197C552D295A7CFC46AFC253B4652B1AF3795B124AB6E"...

Reduce the tag buffer to `tagLength` bytes.

I was just conducting some tests and noted that any value for the tagLength parameter leads to a 16 byte tag in the encrypted byte array. Is it possible that...

The SIV-mode is a 2-pass algorithm. It is a challenge to design an intuitive way to use it in a streaming fashion. The underlying primitives like AES-CMAC and AES-CTR are...

enhancement