Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rho=4096 #3

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update paper link
  • Loading branch information
zhenfeizhang committed Jun 2, 2022
commit 82a9808ffc5dc8bc0718f95e04e344dcddccbbc3
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Synchronized multi-signature scheme from lattice
------

This is a reference implementation for the paper: [Synchronized multi-signature scheme from lattice](tbd).
This is a reference implementation for the paper: [Squirrel: Efficient Synchronized Multi-Signatures from Lattices](https://eprint.iacr.org/2022/694).

# Benchmark
```
2 changes: 1 addition & 1 deletion benches/bench.rs
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@ fn smsig() {

let mut sigs = Vec::new();
let mut pks = Vec::new();
for _ in 0..1000 {
for _ in 0..4096 {
pks.push(pk);
sigs.push(sig.clone());
}