Author
SHA encryption algorithm doubt
Aniruddh Joshi
Ranch Hand
Joined: Jul 29, 2008
Posts: 275
Hi All, In my project SHA encryption is being used for encryption. I have received a request to migarte this to a 64 bit algo so that it is more secure. All i wanted to know is , when we write: MessageDigest digest = MessageDigest.getInstance("SHA"); which version of SHA is called ( SHA-1 or any other ) so that I can trace it and study the encryption scheme used. Thanks
Anrd
"One of the best things you could do is to simplify a larger application into a smaller one by reducing its process and complexity - Fowler"
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35247
posted Oct 14, 2008 04:55:00
0
I'm not sure what you mean by "64-bit algo". SHA-1 (which I assume you're using) creates 160bit digests. Java also supports "SHA-256", which creates 256bit digests. (Note that SHA is a hash -or digest-, not a cipher. So any "encryption" it's used for would be one-way.)
Android apps – ImageJ plugins – Java web charts
James Sabre
Ranch Hand
Joined: Sep 07, 2004
Posts: 781
posted Oct 14, 2008 05:01:00
0
Please see http://forums.sun.com/thread.jspa?threadID=5339639&tstart=0 .
Retired horse trader.
Note: double-underline links may be advertisements automatically added by this site and are probably not endorsed by me.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35247
posted Oct 14, 2008 05:17:00
0
In the future, please BeForthrightWhenCrossPostingToOtherSites .
subject: SHA encryption algorithm doubt