-
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
50 changed files
with
2,298 additions
and
612 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
6.2.1 | ||
6.4.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Supported Crypto Algorithms | ||
|
||
TODO | ||
|
||
## Primitives | ||
- OT | ||
- Simplest OT : https://eprint.iacr.org/2015/267.pdf | ||
- INKP OT Extension : https://www.iacr.org/archive/crypto2003/27290145/27290145.pdf | ||
- KOS OT Extension : https://eprint.iacr.org/2015/546.pdf | ||
- KKRT OT Extension : https://eprint.iacr.org/2016/799.pdf | ||
- SGRR OT Extension: https://eprint.iacr.org/2019/1084.pdf | ||
- GYWZ OT Extension : https://eprint.iacr.org/2022/1431.pdf | ||
- Ferret OT Extension : https://eprint.iacr.org/2020/924.pdf | ||
- Softspoken OT Extension : https://eprint.iacr.org/2022/192.pdf | ||
- VOLE(over f2k) | ||
- base VOLE : https://eprint.iacr.org/2016/505.pdf | ||
- Silent VOLE : https://eprint.iacr.org/2019/1159.pdf, https://eprint.iacr.org/2021/1150.pdf, https://eprint.iacr.org/2022/1014.pdf | ||
|
||
## Theoretical Tools | ||
|
||
- Random Oracle | ||
- Random Permutation | ||
- Local Linear Code : https://eprint.iacr.org/2020/924.pdf | ||
- Low Density Parity Check Code (Silver Code) : https://eprint.iacr.org/2021/1150.pdf | ||
- Expanding Accumulation Code : https://eprint.iacr.org/2022/1014.pdf | ||
- Correlation-Robust Hash Function : https://eprint.iacr.org/2019/074.pdf | ||
- Circular Correlation-Robust Hash Function : https://eprint.iacr.org/2019/074.pdf | ||
|
||
## Basic (Traditional) algorithms | ||
|
||
- AES | ||
- Hash: SHA2, SM2 | ||
- RSA |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ | |
|
||
#include <algorithm> | ||
#include <array> | ||
#include <vector> | ||
|
||
#include "absl/types/span.h" | ||
|
||
|
Oops, something went wrong.