Module Blip
BLIP: BLoom-then-flIP
This is an implementation of the BLoom-then-flIP algorithm as described in the paper BLIP: Non-interactive Differentially-Private Similarity Computation on Bloom filters
val p : float -> int -> float
p e k
returns the optimal flipping probability of a Bloom filter.- parameter e
Differential privacy parameter ε that determines the privacy-utility trade-off: the smaller e is, the more privacy, but also the less utility. e <= 10 is the upper bound that still prevents an adversary from performing a successful profile reconstruction attack.
- parameter k
Number of hash functions used in the Bloom filter.