|
|
|
|
|
by stochastic_monk
2928 days ago
|
|
That's true if you're sampling your passwords uniformly from all legal passwords, and that's not an accurate assumption. That being said, false positives will hopefully outnumber true positives, since not many people should use one of them. On the use of a bloom, I would instead use a cuckoo filter. Then, since its error rate plateaus when it's close to full, you could get to the same error rate with a significantly smaller filter. |
|