vt-middleware / passay

Password policy enforcement for Java.
http://www.passay.org
Other
277 stars 63 forks source link

Add BloomFilter dictionary #80

Closed dfish3r closed 5 years ago

dfish3r commented 5 years ago

Bloom filters provide a space efficient data structure for large dictionaries. The cost for this space savings is the possibility of false positives. While the false positive probability can be defined, it cannot be eliminated without also eliminating the space savings.

Provide a BloomFilterDictionary implementation.