Skip to content

Commit

Permalink
Final report (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronFeickert authored Aug 7, 2024
1 parent f82bd4b commit c06d036
Show file tree
Hide file tree
Showing 5 changed files with 350 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Prepare repository
uses: actions/checkout@v4
- name: Build document
uses: xu-cheng/latex-action@v3
with:
root_file: main.tex
post_compile: "if [[ $(grep -ic overfull *.log) != 0 ]]; then echo 'Margin overrun detected; failing...' && exit 1; fi"
- name: Store PDF
uses: actions/upload-artifact@v4
with:
name: Output PDF
path: ./*.pdf
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.aux
*.bbl
*.blg
*.fdb_latexmk
*.fls
*.log
*.out
*.pdf
*.synctex.gz
*.toc
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Veridise divisor report review

This repository contains the technical note from a review of a report by [Veridise](https://veridise.com/) performed by [Cypher Stack](https://cypherstack.com/) for the [Monero](https://getmonero.org/) community.
34 changes: 34 additions & 0 deletions main.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
@misc{ecip,
author = {Liam Eagen},
title = {Zero Knowledge Proofs of Elliptic Curve Inner Products from Principal Divisors and {W}eil Reciprocity},
howpublished = {Cryptology ePrint Archive, Paper 2022/596},
year = {2022},
note = {\url{https://eprint.iacr.org/2022/596}},
url = {https://eprint.iacr.org/2022/596}
}

@InProceedings{fs,
author="Bernhard, David
and Pereira, Olivier
and Warinschi, Bogdan",
editor="Wang, Xiaoyun
and Sako, Kazue",
title="How Not to Prove Yourself: Pitfalls of the {F}iat-{S}hamir Heuristic and Applications to {H}elios",
booktitle="Advances in Cryptology -- ASIACRYPT 2012",
year="2012",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="626--643",
isbn="978-3-642-34961-4"
}

@INPROCEEDINGS{weak_fs,
author={Dao, Quang and Miller, Jim and Wright, Opal and Grubbs, Paul},
booktitle={2023 IEEE Symposium on Security and Privacy (SP)},
title={Weak {F}iat-{S}hamir Attacks on Modern Proof Systems},
year={2023},
volume={},
number={},
pages={199-216},
keywords={Surveys;Privacy;Smart contracts;Cryptocurrency;Security;zero-knowledge;proof-systems;Fiat-Shamir;attacks;applied-cryptography;blockchain},
doi={10.1109/SP46215.2023.10179408}}
Loading

0 comments on commit c06d036

Please sign in to comment.