You cannot post messages because only members can post, and you are not currently a member.
|
Help understanding CryptoJS AES inter-operability with OpenSSL
|
| |
First off, thanks so much for such an excellent library. I've been bringing myself up to speed on AES cryptography this last few weeks and have been stuck for several days and could use help getting unstuck. My overall goal is to be able to have encryption/decryptions in CryptoJS work with encryptions/decryptions in OpenSSL on Rails 3. I've read the... more »
|
|
Testcase donation for V3
|
| |
Dear Crypto-JS,
Evaluating crypto-js I didn't find any testcase. I build my own
TestCryptoJS htm file, to "prove" (as far as it can be proven) that
crypto-js is functioning correctly. I only implemented testcases for
functions I'm interested in.
I hereby donate this testcase file to the Crypto-JS project.... more »
|
|
AES-CBC and IV
|
| |
Hi everyone, How does AES-CBC successfully decrypt messages that were encrypted using a different IV? If I understand correctly, random IVs are used if none are explicitly specified.
Thanks,
NK
|
|
AES Example CryptoJS 3
|
| |
Hello,
i have 3 Questions. :)
1. Where is the Documentation?
2. Is AES 128Bit or 256Bit encryption
3. Is there a mistake in the JavaScript Example on the Startpage?
[link]
If i try the code:
<script src="[link]... more »
|
|
Crypto-js with Web Workers
|
| |
to correctly use web workers, fix the code as follows:
var c = window.Crypto = {}, ---> var c = Crypto = {},
/***************************** ****************************** *********
* Web Worker
****************************** ****************************** ********/
<script type="text/javascript">... more »
|
|
Speedup v3
|
| |
Well, you could use typed arrays like Uint8Array and Uint32Array
internally instead of WordArray to speed things up...
|
|
v3 beta 1
|
| |
I discovered your work today when I was looking for a way to encode
strings on javascript (client) side using javascript.
I just completed the code momdification and seems to work like a
charm.
great work!
Thanks for the effort and thanks for sharing!
|
|
Patch for hang and additional utilities
|
| |
I modified my copy of 2.5.3 to do these things:
* unpad iso7816 doesn't hang on bad data
* hexToBytes doesn't get confused by odd-length hex strings
* added Crypto.charenc.Binary.stringTo Hex() and hexToString()
diff -bcr crypto-js-2.5.3/blockmodes/blo ckmodes.js crypto-js/
blockmodes/blockmodes.js... more »
|
|
PHP <-> Crypto-JS
|
| |
Does anyone have an example of encrypting data using Crypto-JS then
decrypting using PHP (preferably using mcrypt or something built in. I
have PHP 5.2 available). I realize SSL is a simpler solution, however
it is not an option for me. I've been playing around with no luck so
far. I'm not very picky about which algorithm is used (there won't be... more »
|
|
|