-
Notifications
You must be signed in to change notification settings - Fork 0
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
3 changed files
with
13 additions
and
3 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,3 +1,2 @@ | ||
# Plonk | ||
The [plonk paper](https://eprint.iacr.org/2019/953.pdf) is well written and the protocol is described in section 8.3. Also, this [lambdaclass blogpost](https://blog.lambdaclass.com/all-you-wanted-to-know-about-plonk/) is very good. | ||
|
||
The [plonk paper](https://eprint.iacr.org/2019/953.pdf) is well written and the protocol is described in section 8.3. Also, this [lambdaclass blogpost](https://blog.lambdaclass.com/all-you-wanted-to-know-about-plonk/) is very good. A more concise description is found in section V of this [paper](https://eprint.iacr.org/2023/691.pdf). |
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,9 @@ | ||
# Security | ||
This is a place where security issues should be explained. Example: | ||
|
||
- Discrete Log attacks: [Baby-step giant-step](https://en.wikipedia.org/wiki/Baby-step_giant-step) for groups of prime order, [Pohlig-Hellman](https://en.wikipedia.org/wiki/Pohlig%E2%80%93Hellman_algorithm) for groups whose order is a smooth integer, SSSA attack for curves whose group order is the same as the field order, [MOV attack](https://crypto.stackexchange.com/questions/1871/how-does-the-mov-attack-work) to reduce discrete log in elliptic curves to discrte log in $\mathbb{F}_p$ by using pairings, [Singular curve](https://fdtc.deib.polimi.it/FDTC15/shared/FDTC-2015-session_4_1.pdf) reduce a curve to a simpler curve and solve there the discrete log problem. | ||
- [Frozen heart (Strong Fiat Shamir)](https://eprint.iacr.org/2023/691.pdf) | ||
|
||
Links: | ||
- [Random cybersecurity company](https://hexens.io/blog/spot-the-bug-challenge-3) | ||
- [Weak curves in elliptic curve cryptography](https://wstein.org/edu/2010/414/projects/novotney.pdf) |