tags:

views:

339

answers:

1

I need a SHA1 source code implementation in Java that performs all the steps in the SHA1 algorithm.

Please help.

+2  A: 

You should do a search before posting questions.

http://www.google.com/codesearch?q=lang%3Ajava+sha1&hl=en&btnG=Search+Code

Sam
OK THANKINg you for your comments,i take it very positive. it was my 1st time here. i already study the codes but am having problem to do the bitwise rotation 32-bit number to the left. private static int rol(int num, int cnt) { return (num << cnt) | (num >>> (32 - cnt)); }
Ami
Post that as a separate question and provide the link here. You'll get a better response if you've already done some of the work and are stuck with a specific question.
Kelly French