From 8af129205cbd0be89a4f6dcb2189b66a0567d964 Mon Sep 17 00:00:00 2001 From: Aitor Ruano <45633475+c0dearm@users.noreply.github.com> Date: Thu, 23 Jan 2020 16:04:17 +0100 Subject: [PATCH 1/6] Create codecov.yml --- codecov.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 codecov.yml diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 0000000..24b3742 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,20 @@ +codecov: + require_ci_to_pass: yes + +coverage: + precision: 2 + round: down + range: "90...100" + +parsers: + gcov: + branch_detection: + conditional: yes + loop: yes + method: no + macro: no + +comment: + layout: "reach,diff,flags,tree" + behavior: default + require_changes: no From b009792b7a92322dbec4bc346a5833101cc3accf Mon Sep 17 00:00:00 2001 From: Aitor Ruano <45633475+c0dearm@users.noreply.github.com> Date: Fri, 24 Jan 2020 10:46:27 +0100 Subject: [PATCH 2/6] Create sec.yml Check for vulnerabilities on dependencies --- .github/workflows/sec.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/sec.yml diff --git a/.github/workflows/sec.yml b/.github/workflows/sec.yml new file mode 100644 index 0000000..833ddcc --- /dev/null +++ b/.github/workflows/sec.yml @@ -0,0 +1,17 @@ +on: + push: + paths: + - '**/Cargo.toml' + - '**/Cargo.lock' + +name: Security Audit + +jobs: + security: + name: Security + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} From 80b4a11821ca46c3a392fb84180af090b2b81f30 Mon Sep 17 00:00:00 2001 From: Aitor Ruano <45633475+c0dearm@users.noreply.github.com> Date: Fri, 24 Jan 2020 10:52:54 +0100 Subject: [PATCH 3/6] Delete sec.yml --- .github/workflows/sec.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/sec.yml diff --git a/.github/workflows/sec.yml b/.github/workflows/sec.yml deleted file mode 100644 index 833ddcc..0000000 --- a/.github/workflows/sec.yml +++ /dev/null @@ -1,17 +0,0 @@ -on: - push: - paths: - - '**/Cargo.toml' - - '**/Cargo.lock' - -name: Security Audit - -jobs: - security: - name: Security - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: actions-rs/audit-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} From 105d02b086c9a61e79427a80203646f1399e3135 Mon Sep 17 00:00:00 2001 From: Aitor Ruano <45633475+c0dearm@users.noreply.github.com> Date: Fri, 24 Jan 2020 10:53:54 +0100 Subject: [PATCH 4/6] Update and rename ci.yml to rust.yml --- .github/workflows/{ci.yml => rust.yml} | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) rename .github/workflows/{ci.yml => rust.yml} (89%) diff --git a/.github/workflows/ci.yml b/.github/workflows/rust.yml similarity index 89% rename from .github/workflows/ci.yml rename to .github/workflows/rust.yml index c935ba4..e3d884b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/rust.yml @@ -1,6 +1,6 @@ on: [push, pull_request] -name: Continuous Integration +name: Rust jobs: check: @@ -77,3 +77,12 @@ jobs: - uses: codecov/codecov-action@v1.0.5 with: token: ${{secrets.CODECOV_TOKEN}} + + security: + name: Security + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} From c1409430f72a170c96ff9e28a66ac3198d85990a Mon Sep 17 00:00:00 2001 From: Aitor Ruano <45633475+c0dearm@users.noreply.github.com> Date: Fri, 24 Jan 2020 10:58:09 +0100 Subject: [PATCH 5/6] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3b599c5..497de05 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,10 @@ # Sharks -[![CI](https://github.com/c0dearm/sharks/workflows/Continuous%20Integration/badge.svg?branch=master)](https://github.com/c0dearm/sharks/actions) -[![Codecov](https://codecov.io/gh/c0dearm/sharks/branch/master/graph/badge.svg)](https://codecov.io/gh/c0dearm/sharks) -[![Crate](https://img.shields.io/crates/v/sharks.svg)](https://crates.io/crates/sharks) +[![Rust](https://github.com/c0dearm/sharks/workflows/Rust/badge.svg?branch=master)](https://github.com/c0dearm/sharks/actions) +[![Crates](https://img.shields.io/crates/v/sharks.svg)](https://crates.io/crates/sharks) [![Docs](https://docs.rs/sharks/badge.svg)](https://docs.rs/sharks) +[![Codecov](https://codecov.io/gh/c0dearm/sharks/branch/master/graph/badge.svg)](https://codecov.io/gh/c0dearm/sharks) +[![License](https://camo.githubusercontent.com/47069b7e06b64b608c692a8a7f40bc6915cf629c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d417061636865322e302532464d49542d626c75652e737667)](https://github.com/c0dearm/sharks/blob/master/COPYRIGHT) Fast, small and secure [Shamir's Secret Sharing](https://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing) library crate From 09586ab512444b4075a3608f3491845377f4af5f Mon Sep 17 00:00:00 2001 From: Thomas Santerre Date: Thu, 6 Feb 2020 22:54:00 +0900 Subject: [PATCH 6/6] Add benchmark result from i7-8565u (#11) * Add benchmark result from i7-865u * Re-run bench, reduced background processes. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 497de05..48fe603 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ You can run them with `cargo test` and `cargo bench`. | CPU | obtain_shares_dealer | step_shares_dealer | recover_secret | share_from_bytes | share_to_bytes | | ----------------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | | Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz | [1.4321 us 1.4339 us 1.4357 us] | [1.3385 ns 1.3456 ns 1.3552 ns] | [228.77 us 232.17 us 236.23 us] | [24.688 ns 25.083 ns 25.551 ns] | [22.832 ns 22.910 ns 22.995 ns] | +| Intel(R) Core(TM) i7-8565U CPU @ 1.80GHz | [1.3439 us 1.3499 us 1.3562 us] | [1.5416 ns 1.5446 ns 1.5481 ns] | [197.46 us 198.37 us 199.22 us] | [20.455 ns 20.486 ns 20.518 ns] | [18.726 ns 18.850 ns 18.993 ns] | # Contributing