Hash changes within `PERIOD`
Hello, I just installed ipscrub, and I'm seeing unexpected behaviour.
The screenshot shows the unscrubbed access.log on top and the scrubbed access_scrubbed.log below.
The hash of the IP 146.223.14.99 changes from ndjXjp to JEb+/G and back again within the same second. Looking at my access.log, this happens multiple times. Most requests from that IP have ndjXjp, but a few have JEb+/G as hashes.
We can also see that 66.69.106.150 has the hashes c5W8yh and Tz0Hqw.

Is this somehow expected behaviour?
I expected the same IP always transforms into the exact same hash within a PERIOD.
I'm on nginx/1.22.1 and compiled ipscrub as a dynamic module.
Kind regards
I wonder if you have more than one worker process?
I noticed that ipscrub uses "global" variable for keeping the random salt / nonce, and it is actually "global" within a single worker process. To sync it between two worker processes, I had to use shared memory.
Not sure if it's still relevant for @lenzls, but if anybody else needs it in the future - here is my PR with a fix: https://github.com/masonicboom/ipscrub/pull/13