I’ve been using SHA256 successfully and for an Admin section of a site I wanted to use SHA512.
I’m using the js from http://sourceforge.net/projects/jssha/files/
The only catch is a can’t seem to call the function.
with sha256 I just do the following:
SHA256('data');
But when I try the same with sha512 the script just stops at that point – doesn’t work – eg:
SHA512('data');
Also I can see the SHA256() function in the original code but not the SHA512 function… is there a trick to using this code? Another source I should use?
Thanks.
1 Answer