Closed GoogleCodeExporter closed 9 years ago
The problem is probably rooted in the fact that C#, by default, will convert
characters to bytes using UTF-16, and CryptoJS using UTF-8. You'll have to
change one or the other so they match.
That being said, there still must be something funky going on in your JS,
because neither your expected nor your actual result is the actually expected
result for either UTF-16 or UTF-8.
Original comment by Jeff.Mott.OR
on 8 Oct 2013 at 5:39
Thanks Jeff for the quick reply.
I verified my C# output with Hash Generator at
http://www.insidepro.com/hashes.php?lang=eng by inputting
bravo.john2k9@gmail.com in the password field, and got the following in the
fourth field of SHA256 block:
CJ/gIFQ4kB/F8+kk8cDi8TAf731V/mp0rFY162yDckc=
Now based on this, could you provide with the CryptoJS snippet to get UTF-16
result to let me try running the same to match with C# and insidePro results?
Original comment by sushil.s...@gmail.com
on 8 Oct 2013 at 6:49
The attached code produces the following output:
.NET SHA256: CJ/gIFQ4kB/F8+kk8cDi8TAf731V/mp0rFY162yDckc=
the uemail cookie is: uemail=bravo.john2k9@gmail.com
CryptoJS.SHA256 hash is:
1e3669d21159651327368e49c68b6867db52e682bb5527cefe98f535dfc0ab86
CryptoJS.enc.Base64: HjZp0hFZZRMnNo5JxotoZ9tS5oK7VSfO/pj1Nd/Aq4Y=
base64 to word: 1e3669d21159651327368e49c68b6867db52e682bb5527cefe98f535dfc0ab86
CryptoJS.enc.Latin1: 6iÒYe'6IÆhgÛRæ»U'Îþõ5ßÀ«
CryptoJS.enc.Hex:
1e3669d21159651327368e49c68b6867db52e682bb5527cefe98f535dfc0ab86
Original comment by sushil.s...@gmail.com
on 8 Oct 2013 at 7:07
> I verified my C# output with Hash Generator at
> http://www.insidepro.com/hashes.php?lang=eng
> by inputting bravo.john2k9@gmail.com in the password field, and got the
following in
> the fourth field of SHA256 block:
The first and second fields are the typically expected value. The third and
fourth, according to the site, are "in Unicode." That's not actually helpful,
because Unicode could mean UTF-8, or it could mean UTF-16 (either little- or
big-endian), or it could mean UTF-32 (either little- or big-endian). Through
trial and error, I discovered that it means UTF-16 little-endian.
You should be able to get the same result from CryptoJS if you load the utf16
component and hash the result of:
CryptoJS.enc.Utf16LE.parse("bravo.john2k9@gmail.com")
Original comment by Jeff.Mott.OR
on 8 Oct 2013 at 7:18
Seems like there is some issue in the code below as I am not getting the
results you got, could you take a look and point out what's wrong:
<script src='Scripts/jquery-1.8.2.min.js'></script>
<script src='scripts/jquery.cookie.js'></script>
<script src='http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/sha256.js'></script>;
<script src='http://crypto-js.googlecode.com/svn/tags/3.1.2/build/components/enc-utf16-min.js'></script>;
<script>
$(document).ready(function () {
var words = CryptoJS.enc.Utf16LE.parse('bravo.john2k9@gmail.com');
document.write('<br />words: ' + words);
var hash = CryptoJS.SHA256(words);
document.write('<br />hash: ' + hash);
var encStr = hash.toString(CryptoJS.enc.Utf16LE);
document.write('<br />encStr: ' + encStr);
document.write('<br />CryptoJS.enc.Utf16LE.parse(encStr): ' + CryptoJS.enc.Utf16LE.parse(encStr));
document.write('<br />hash.toString(CryptoJS.enc.Latin1): ' + hash.toString(CryptoJS.enc.Latin1));
document.write('<br />hash.toString(CryptoJS.enc.Hex): ' + hash.toString(CryptoJS.enc.Hex));
});
Output:
words:
62007200610076006f002e006a006f0068006e0032006b003900400067006d00610069006c002e00
63006f006d00
hash: 089fe0205438901fc5f3e924f1c0e2f1301fef7d55fe6a74ac5635eb6c837247
encStr: 鼈⃠㡔ᾐⓩ샱ἰ緯﹕瑪嚬荬䝲
CryptoJS.enc.Utf16LE.parse(encStr):
089fe0205438901fc5f3e924f1c0e2f1301fef7d55fe6a74ac5635eb6c837247
hash.toString(CryptoJS.enc.Latin1): à
T8Åóé$ñÀâñ0ï}Uþjt¬V5ëlrG
hash.toString(CryptoJS.enc.Hex):
089fe0205438901fc5f3e924f1c0e2f1301fef7d55fe6a74ac5635eb6c837247
Original comment by sushil.s...@gmail.com
on 8 Oct 2013 at 8:39
I'm not sure why you think anything is wrong. The hex hash value you get is the
same as what insidepro.com gives you:
089fe0205438901fc5f3e924f1c0e2f1301fef7d55fe6a74ac5635eb6c837247
Original comment by Jeff.Mott.OR
on 8 Oct 2013 at 9:04
Thanks Jeff. I was trying to get CJ/gIFQ4kB/F8+kk8cDi8TAf731V/mp0rFY162yDckc=,
is there a way to get this value using the hash above?
Original comment by sushil.s...@gmail.com
on 8 Oct 2013 at 9:14
That's a base64 result, so...
hash.toString(CryptoJS.enc.Base64)
(Make sure you've loaded the base64 component.)
Original comment by Jeff.Mott.OR
on 8 Oct 2013 at 10:37
Thanks a lot Jeff. I got both UTF 8 and UTF16 working.
I have attached sample VS2012 C#.NET projects for reference, error handling,
and code optimization is not done.
Original comment by sushil.s...@gmail.com
on 9 Oct 2013 at 3:51
Attachments:
Original comment by Jeff.Mott.OR
on 10 Oct 2013 at 4:20
Original issue reported on code.google.com by
sushil.s...@gmail.com
on 8 Oct 2013 at 4:56Attachments: