CryptoJS icon indicating copy to clipboard operation
CryptoJS copied to clipboard

This is unmodified copy of Google Code hosted CryptoJS project. CryptoJS is a growing collection of standard and secure cryptographic algorithms implemented in JavaScript using best practices and patt...

Results 12 CryptoJS issues
Sort by recently updated
recently updated
newest added

I was following README.md and I entered this JsBin example: > You can play with below code live at http://jsbin.com/IziHAdIf/1/edit?html,console. Actually these links are broken, in JsBin: http://crypto-js.googlecode.com/svn/tags/3.1.2/build/components/enc-base64-min.js http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/md5.js ![screen...

We are migrating from bower package manager to npm. And we have faced with issue that we cannot install cryptojslib as npm module. Our package json file looks like next:...

Hi I'm trying to use the library to encrypt/decrypt aes messages but when I try to decrypt a message I got the message of the title. This is what I...

Line 226 of core.js : crash sometime for obscur reasons (with chromium 50.0.2661.75 (64-bit)) (not with FireFox 46.0) solved by changing ``` 219 } else if (thatWords.length > 0xffff) {...

There is implementation available for PKCS7 padding with RSA but not PKCS1.

please add package.json so use npm

This is the java code. I am trying to replicate the same functionality in javascript. public String populateHMAC(String app_id, String mobile, String token, String deviceId) { ``` String hmac =...

def encryption(payload_data, merchant) key = merchant.api_secret_key algorithm = 'AES-128-CBC' begin cipher = OpenSSL::Cipher.new(algorithm) cipher.encrypt() cipher.key = key crypt = cipher.update(payload_data) + cipher.final() crypt_string = (Base64.encode64(crypt)) rescue Exception => e Rails.logger.info...

CryptoJS.AES.encrypt能否传入自定义的数组格式