Use of fuzzy hashing to generate hashes #160
Replies: 3 comments 1 reply
-
I have not looked into fuzzy hashing. That is interesting. Are there any code samples or examples? I could see that being useful. For fingerprint tracing, I'm using Separately, in the template and in a few controlled metrics, I use a light weight hashing function to show sub section diffs. |
Beta Was this translation helpful? Give feedback.
-
Nice. I'm researching this and digesting this js library. |
Beta Was this translation helpful? Give feedback.
-
I have a form of fuzzy hashing in the works and it should appear in a feature release. |
Beta Was this translation helpful? Give feedback.
-
Normal hashes have a property called cryptographic diffusion, which leads to large changes in the hash even for small changes in the original entity. For browser fingerprinting something like fuzzy hashing seems more appropriate since similar inputs (fingerprinting properties) lead to similar hashes. With this method a visitor could check the similarity of different browser configurations and is closer to real world applicability of tracking by browser fingerprinting which needs to be robust to small changes.
Does CreepJS use some form of fuzzy hashing to generate hashes?
Beta Was this translation helpful? Give feedback.
All reactions