python-rabin-fingerprint
python-rabin-fingerprint copied to clipboard
Question about output of elements in list
Hello, I'm trying to use rabin.
when I run
a = rabin("file")
it shows the list.
May I know what the elements in list mean?
does that represent each chunk size or output of hash on each chunk?
The elements are the chunk sizes in order. A quick sum()
command will show it adds up to the size of the file itself. It is not the hash!