Top "Cryptojs" questions

CryptoJS is a growing collection of standard and secure cryptographic algorithms implemented in JavaScript using best practices and patterns.

AES encryption using Java and decryption using Javascript

I am making an application which needs Java based AES Encryption and JavaScript based decryption. I am using the following …

java javascript encryption aes cryptojs
Crypto-JS is now missing on google codes

I was using the online version of Crypto-Js hosted on google codes see below: <script src="https://crypto-js.googlecode.…

javascript google-code cryptojs
cryptojs: How to generate AES passphrase

I want to generate a 256bit password for my AES encryption. When I check the password after the encryption it …

encryption passwords aes cryptojs
Can't decrypt string with CryptoJS

I'm trying to encode/decode data using CryptoJS, as a preliminar test for the code I want to develop. This …

javascript encryption cryptojs
Encrypt with CryptoJS and decrypt with PHP

On the client side (mobile device) I encrypt a users password with CryptoJS: var lib_crypt = require('aes'); $.loginButton.addEventListener(…

javascript php encryption mcrypt cryptojs
How to get digest representation of CryptoJS.HmacSHA256 in JS

I have to generate string representation of CryptoJS.HmacSHA256 in digest (bytes representation). I need it because i have to …

javascript python cryptography hmac cryptojs
Cipher a string using crypto-js with hex encoding to make it url friendly

I am using crypto-js by brix. I have this function below that handles the encryption of a plain text. import …

javascript encryption cryptojs
Encryption in JavaScript and decryption with PHP

I'm encrypting my user password in JavaScript like this: var encryptedPassword = CryptoJS.AES.encrypt(password, "Secret Passphrase"); It works fine …

javascript php encryption mcrypt cryptojs
Include CryptoJS in AngularJS application - Can't find variable: CryptoJS

I want to use CryptoJS in my AngularJS application, but I get this error: Can't find variable: CryptoJS. I included …

javascript angularjs encryption cryptojs
Encrypt in PHP openssl and decrypt in javascript CryptoJS

I'm encrypting some parameters in PHP using openssl("parameter", "AES-256-ECB", "client") and I wish to decrypt in CryptoJS: CryptoJS.…

javascript php openssl padding cryptojs