|
|
|
|
|
by dariosalvi78
1191 days ago
|
|
Thanks for the answer, but I was meaning from your customer perspective. My understanding is that you offer a key-value store, so the only operation available on the encrypted data is a comparison (==). If my application wants to retrieve data within a certain range (< and > operators) is there anything I can do to implement it on top of you SDK? Think of the encrypted messages app: how can I retrieve this month's messages using your SDK? I hope this clearer now... |
|
The simple way to efficiently do this kind of check would be to store an index of keys (perhaps chunk them into buckets, like 0-10, 10-20, etc), and then privately retrieve the individual items. Retrievals are fast, especially when batched, so if the ultimate number of items you’re trying to retrieve is not too large, this can work.
If you want to chat more about range queries, feel free to email us (founders @ blyss.dev)