Description
A searchable symmetric encryption scheme is a symmetric-key encryption scheme that encrypts a collection of documents , where each document is viewed as a set of keywords from a keyword space . Given the encryption key and a keyword , one can generate a search token with which the encrypted data collection can be searched for . The result of the search is the subset of encrypted documents that contain the keyword .Static SSE
A static SSE scheme consists of three algorithms that work as follows: * takes as input a security parameter and a document collection and outputs a symmetric key , an encrypted index , and an encrypted document collection * takes as input the secret key and a keyword and outputs a search token * takes as input the encrypted index , the encrypted document collection and a search token and outputs a set of encrypted documents A static SSE scheme is used by a client and an untrusted server as follows. The client encrypts its data collection using the algorithm which returns a secret key and an encrypted document collection . The client keeps secret and sends and to the untrusted server. To search for a keyword , the client runs the algorithm on and to generate a search token which it sends to the server. The server runs Search with , , and and returns the resulting encrypted documents back to the client.Dynamic SSE
A dynamic SSE scheme supports, in addition to search, the insertion and deletion of documents. A dynamic SSE scheme consists of seven algorithms where , and are as in the static case and the remaining algorithms work as follows: * takes as input the secret key and a new document and outputs an insert token * takes as input the encrypted document collection EDC and an insert token and outputs an updated encrypted document collection * takes as input the secret key and a document identifier and outputs a delete token * takes as input the encrypted data collection and a delete token and outputs an updated encrypted data collection To add a new document the client runs on and to generate an insert token which it sends to the server. The server runs with and and stores the updated encrypted document collection. To delete a document with identifier , the client runs the algorithm with and to generate a delete token which it sends to the server. The server runs with and and stores the updated encrypted document collection. An SSE scheme that does not support and is called semi-dynamic.History of Searchable Symmetric Encryption
The problem of searching on encrypted data was considered by Song, Wagner and Perrig though previous work onSecurity
SSE schemes are designed to guarantee that the untrusted server cannot learn any partial information about the documents or the search queries beyond some well-defined and reasonable leakage. The leakage of a scheme is formally described using a leakage profile which itself can consists of several leakage patterns. SSE constructions attempt to minimize leakage while achieving the best possible search efficiency. SSE security can be analyzed in several adversarial models but the most common are: * the persistent model, where an adversary is given the encrypted data collection and a transcript of all the operations executed on the collection; * the snapshot model, where an adversary is only given the encrypted data collection (but possibly after each operation).Security in the Persistent Model
In the persistent model, there are SSE schemes that achieve a wide variety of leakage profiles. The most common leakage profile for static schemes that achieve single keyword search in optimal time is which reveals the number of documents in the collection, the size of each document in the collection, if and when a query was repeated and which encrypted documents match the search query. It is known, however, how to construct schemes that leak considerably less at an additional cost in search time and storage. When considering dynamic SSE schemes, the state-of-the-art constructions with optimal time search have leakage profiles that guarantee forward privacy which means that inserts cannot be correlated with past search queries.Security in the Snapshot Model
In the snapshot model, efficient dynamic SSE schemes with no leakage beyond the number of documents and the size of the collection can be constructed. When using an SSE construction that is secure in the snapshot model one has to carefully consider how the scheme will be deployed because some systems might cache previous search queries.Cryptanalysis
A leakage profile only describes the leakage of an SSE scheme but it says nothing about whether that leakage can be exploited or not. Cryptanalysis is therefore used to better understand the real-world security of a leakage profile. There is a wide variety of attacks working in different adversarial models, based on a variety of assumptions and attacking different leakage profiles.See also
* Homomorphic encryption *References
{{reflist Cryptographic primitives