i need to calculate checksum of some file, in sha1 base32 any existent windows application i can use? greets

link|improve this question
feedback

migrated from stackoverflow.com May 24 '10 at 18:44

This question came from our site for professional and enthusiast programmers.

4 Answers

You could always use Cygwin

link|improve this answer
Cygwin is a POSIX compatibility layer for Windows, not a tool to calculate checksums. – Ignacio Vazquez-Abrams May 24 '10 at 19:35
1  
The Cygwin version of coreutils provides the exact functionality needed. – Velociraptors May 24 '10 at 20:02
Except that it doesn't do Base32. – Ignacio Vazquez-Abrams May 24 '10 at 20:08
feedback

I haven't tried it, but this seems promising.

link|improve this answer
I don't see Base32 support listed anywhere. – Ignacio Vazquez-Abrams May 24 '10 at 19:07
feedback

http://fsumfe.sourceforge.net

link|improve this answer
That supports Base64, but not Base32. – Ignacio Vazquez-Abrams May 24 '10 at 19:59
it does. trust me, or install it. – Omar Mukhtar May 24 '10 at 20:11
feedback

http://nl3.php.net/manual/en/function.sha1-file.php#61741

This comment - links directly to the comment - contains a sha1 base32 script for running on files.

It is the most useful thing I've found thus far - if you know the basics of using PHP should be pretty simple. I'm going to take it and make a PHP shell script out of it so I can pipe right into it personally. Your mileage may vary.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown