-
Notifications
You must be signed in to change notification settings - Fork 22
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
1 parent
99e833f
commit b7ae910
Showing
4 changed files
with
69 additions
and
29 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,24 @@ | ||
# Oblivious Transfer | ||
|
||
This module implements the Oblivous Transfer with the following | ||
algorithms: | ||
|
||
- RSA: simple RSA encryption based OT. Each transfer requires one RSA | ||
operation. | ||
- Chou Orlandi OT: Diffie-Hellman - like fast OT algorithm. | ||
|
||
## Performance | ||
|
||
| Algorithm | ns/op | ops/s | | ||
| :----------- | ---------: | ------: | | ||
| RSA-512 | 252557 | 3960 | | ||
| RSA-1024 | 1256961 | 796 | | ||
| RSA-2048 | 7785958 | 128 | | ||
| CO-batch-1 | 170791 | 5855 | | ||
| CO-batch-2 | 269399 | 7424 | | ||
| CO-batch-4 | 468161 | 8544 | | ||
| CO-batch-8 | 877664 | 9115 | | ||
| CO-batch-16 | 1706184 | 9378 | | ||
| CO-batch-32 | 3273137 | 9777 | | ||
| CO-batch-64 | 6480310 | 9876 | | ||
| CO-batch-128 | 12845639 | 9964 | |
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