1

I am studying hash algorithms. I've learned how to use hash functions and methods implemented in many frameworks, but I need know how to make my own implementation of a hash function or the basics steps for implementing one simple hash function.

Where would i find information about that?

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
batressc
  • 1,499
  • 1
  • 18
  • 28

1 Answers1

2

There are many hash algorithms that can be implemented, there are a bunch provided in the .Net library itself. However, if you want to implement one you need to pick an algorithm first. The following is an implementation of Tiger Hash. Another hash function implementation is by Davy Landman. Looking at the code might help you get started.

Sharkz
  • 458
  • 1
  • 9
  • 25