rohanputcha / private-heavy-hitter-analysis

Private heavy hitter analysis using a differentially private count-min sketch
0 stars 0 forks source link

Change hash function #1

Open rohanputcha opened 1 month ago

rohanputcha commented 1 month ago

Use:

h(x) = ((ax + b) mod p) mod w

where a, b are random, p is random prime, w is width.

rohanputcha commented 1 month ago

Paper assumes x is a vector with ints. Wait to address this issue.