-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
178 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Introduction | ||
|
||
This folder contains the implementation of searchable symmetric encryption. | ||
|
||
## Reference paper | ||
|
||
https://eprint.iacr.org/2013/169.pdf | ||
|
||
### Description | ||
|
||
This paper proposes a highly scalable searchable symmetric encryption (SSE) scheme that aims to solve the search problem in large-scale encrypted datasets, especially to support Boolean queries (e.g., logical operations such as AND, OR, NOT, etc.). While traditional SSE schemes usually support only simple keyword searches, this scheme is able to handle more complex Boolean queries by improving the index structure and query processing, allowing users to combine multiple keywords for searching. | ||
|
||
## Implemention | ||
|
||
1. **T-Set Instantiation** | ||
- `tset.h` | ||
- `tset.cc` | ||
- `tset_test.cc` | ||
2. **OXT: Oblivious Cross-Tags Protocol** | ||
- `sse.h` | ||
- `sse.cc` | ||
- Test:`sse_test.cc` | ||
|
||
## Test | ||
|
||
1. To test tset:`bazel test //yacl/examples/sse/tset_test` | ||
2. To test sse:`bazel test //yacl/examples/sse/sse_test` | ||
|
||
## Data Set | ||
|
||
Census Income Dataset | ||
https://tianchi.aliyun.com/dataset/111479 | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.