TheAlgorithms-C/hash
2020-07-22 13:29:19 -04:00
..
CMakeLists.txt added hash folder to CMAKE build 2020-07-22 11:34:56 -04:00
hash_adler32.c remove additional author 2020-07-22 13:23:03 -04:00
hash_crc32.c split crc32 code from hash.c to independent program 2020-07-22 13:29:19 -04:00
hash_djb2.c fix function reference 2020-07-22 13:03:59 -04:00
hash_sdbm.c docs + vartype fix 2020-07-22 12:54:22 -04:00
hash_xor8.c split xor8 code from hash.c to independent program 2020-07-22 13:11:14 -04:00
hash.c formatting source-code for b388e4a309 2020-05-29 20:23:24 +00:00
hash.h formatting source-code for b388e4a309 2020-05-29 20:23:24 +00:00
README.md update readme file 2020-07-22 11:38:27 -04:00
test_program.c formatting source-code for 5bba04b671 2020-06-28 15:25:37 +00:00

Hash algorithms

  • sdbm
  • djb2
  • xor8 (8 bit)
  • adler_32 (32 bit)
  • crc32 (32 bit)