Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
arcuo committed Dec 30, 2024
1 parent 58ef353 commit 3dccfd7
Show file tree
Hide file tree
Showing 7 changed files with 234 additions and 289 deletions.
Binary file removed Deklarationsskabelon_ENGLISH.docx
Binary file not shown.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@

This is a masters thesis project at Aarhus University, Denmark.

The thesis is about the implementation of the SDitH signature protocol in Rust.
"SDitH signature protocol in Rust"

Authors:
- [Hugh Benjamin Zachariae](https://github.com/arcuo)
- [Magnus Jensen](https://github.com/Mactherobot)

Checkout the package [README](sdith/README.md) or the [documentation](https://mactherobot.github.io/sdith-rust) for more information.
### Report

The report is contained within the [project](https://github.com/Mactherobot/sdith-rust/tree/main/project) folder.

### Rust package

Checkout the `rsdith` package and `sdith` CLI in the [README](sdith/README.md) or the [documentation](https://mactherobot.github.io/sdith-rust) for more information.
Binary file removed prelim.pdf
Binary file not shown.
440 changes: 223 additions & 217 deletions project/template.tex

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions sdith/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,9 @@ authors = ["https://github.com/mactherobot", "https://github.com/arcuo"]
repository = "https://github.com/Mactherobot/sdith-rust"
documentation = "https://mactherobot.github.io/sdith-rust"
license-file = "LICENSE.txt"
license = "Apache-2.0"
readme = "README.md"
keywords = ["rust", "sdith", "post-quantum", "cryptography", "signature", "mpc", "mpcith", "zkp", "nist"]

im-a-teapot = false

edition = "2021"
resolver = "2"
default-run = "sdith" # Default run the cli
Expand Down
6 changes: 3 additions & 3 deletions sdith/benches/benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ use gf256::mul_benchmark;
fn get_config() -> Criterion {
Criterion::default()
.significance_level(0.1)
.sample_size(250)
.sample_size(500)
.without_plots()
.measurement_time(Duration::from_secs(20))
.measurement_time(Duration::from_secs(30))
}

#[cfg(all(target_os = "linux", feature = "cycles_per_byte"))]
Expand All @@ -33,7 +33,7 @@ criterion_group! {
targets = api_benchmark, simd_benchmark, parallel_benchmark, merkle_benchmark, mul_benchmark
}

#[cfg(not(all(target_os = "linux", feature = "cycles_per_byte")))]
#[cfg(not(feature = "cycles_per_byte"))]
criterion_group!(
name = benches;
config = get_config();
Expand Down
64 changes: 0 additions & 64 deletions test.py

This file was deleted.

0 comments on commit 3dccfd7

Please sign in to comment.