top | item 41115206

(no title)

lsh123 | 1 year ago

Does the server reads specific rows from spam numbers DB or the whole database?

discuss

order

karulont|1 year ago

In this PIR model the server has to read the whole database, otherwise it would be easy on the server to see, that these rows were not accessed and therefore they are not the one the client queried.

In this PIR model the server runtime is O(n) where n is the number of rows.

To keep it practical, we do support sharding the database. Client leaks a few bits of hashed query to pick the right shard, where we process the entire shard. There is a inherent privacy-performance tradeoff: less shards = less leakage vs more shards = better performance & less privacy.

lsh123|1 year ago

Thanks for explanation. I will read the code to see how sharing works.