2

I wonder how to get whirlpool hash of a file. I can't find the definition for this in HashAlgorithm.

I'm working on a app which will calculate the hash of a file in few known hashing algorithms such as MD5, SHA1, SHA224, etc.

Any ideas?

EDIT. Since I have found source it is very complicated to run. Is there any easier solution for this?

justin
  • 104,054
  • 14
  • 179
  • 226
HelpNeeder
  • 6,383
  • 24
  • 91
  • 155

1 Answers1

2

A quick Google search will produce a number of options to explore.

The Bouncy Castle library (which has full source code available) offers the Whirlpool algorithm. And this post on Koders.com also includes the full source.

Tails
  • 3,350
  • 2
  • 17
  • 19