WombatHasher

WombatHasher
Login

WombatHasher

A Command Line Hash List and Hash Comparison tool compatible with wombatforensics' hash lists and hash matching using the BLAKE3 hash.

The code is compiled using c++17.

The blake3 library is statically linked in, so can just download the binary and it should run fine. If you want to compile yourself, compile blake3 first. To compile libblake3, i use the following two commands...

gcc -c blake3.c blake3_dispatch.c blake3_portable.c blake3_sse2_x86-64_unix.S blake3_sse41_x86-64_unix.S blake3_avx2_x86-64_unix.S blake3_avx512_x86-64_unix.S
ar -rc libblake3.a blake3_avx2_x86-64_unix.o blake3_avx512_x86-64_unix.o blake3_dispatch.o blake3.o blake3_portable.o blake3_sse2_x86-64_unix.o blake3_sse41_x86-64_unix.o

To compile blake3 and wombathasher, simply call the respective Makefile.