* Move `KeGroup` to `KeyExchange::Group` - Introduce `KeyExchange::Hash`, which separates the OPRF hash from the one used in `KeyExchange`. - Remove `De/Serialize` requirement on key exchange messages and states, which forced a lot of where bounds on downstream users. - Rename `KeGroup` to `Group`. - Replace `D` generic for hash with `H`. * Use `voprf::derive_key()` directly * Implement SIGMA-I key exchange * Improve `KeyExchange` for SIGMA-I and Ed25519 * Implement EdDSA * Un-qualify some method calls * SIGMA-I: only include client identity in client mac * SIGMA-I: include server mac in client signature * Expose key exchange types in `crate` & move modules * Implement Ed25519ph * Document `ed25519` crate feature * Remove `ristretto255-voprf` crate feature * Adjust CI crate feature testing * Fix Rustdoc * Remove unnecessary generic parameters from SIGMA-I * Properly mark to-do's with TODO * Assorted fixes * SIGMA-I: include context in signature * SIGMA-I: include identifiers in signature * Merge `ServerLoginStart/FinishParameters` * Re-export more necessary types * More carefully expose types * Add ECDSA test * SIGMA-I: share context hashing * De-duplicate client static public key storage * Hide `KeyExchange` better * Use the correct hash in the root documentation * Bump `derive-where` * Format documentation examples a bit further * Add remote OPRF seed documentation * Rename `deserialize_key_pair` to `deserialize_take_key_pair` * Add more key tests * Remove `SharedSecret` trait * SIGMA-I refactor message API * Share more implementation between 3DH and SIGMA-I * Remove unnecessary zero scalar check for Curve25519 * Use correct hash in test * Add some more TODOs * Exclude `tests` folder from Cargo publishing * Enable missing dependencies * Use right crate for testing Ed25519 * Remove unnecessary `Sized` constraints * Remove unnecessary `ecdsa` crate features * Move signature de/serialization to trait methods * Nit: move import to appropriate location * Add warning to SIGMA-I
268 lines
7.2 KiB
YAML
268 lines
7.2 KiB
YAML
name: Rust CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
backend_feature:
|
|
-
|
|
- --features ristretto255
|
|
- --features curve25519
|
|
- --features ecdsa
|
|
- --features ed25519
|
|
- --features ristretto255,curve25519,ecdsa,ed25519
|
|
frontend_feature:
|
|
-
|
|
- --features argon2
|
|
- --features serde
|
|
toolchain:
|
|
- stable
|
|
- 1.83.0
|
|
name: test
|
|
env:
|
|
PKCS11_MODULE: /usr/lib/softhsm/libsofthsm2.so
|
|
SOFTHSM2_CONF: /tmp/softhsm2.conf
|
|
RUSTFLAGS: --cfg test_hsm
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@main
|
|
|
|
- name: Install ${{ matrix.toolchain }} toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: ${{ matrix.toolchain }}
|
|
override: true
|
|
|
|
- name: Install SoftHSM
|
|
run: |
|
|
sudo apt-get update -y -qq &&
|
|
sudo apt-get install -y -qq libsofthsm2 &&
|
|
mkdir /tmp/tokens
|
|
echo "directories.tokendir = /tmp/tokens" > /tmp/softhsm2.conf
|
|
|
|
- name: Run cargo test
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: --no-default-features ${{ matrix.backend_feature }} ${{ matrix.frontend_feature }}
|
|
|
|
- name: Run cargo test with std
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: --no-default-features --features std ${{ matrix.backend_feature }} ${{ matrix.frontend_feature }}
|
|
|
|
cross-test:
|
|
name: Test on ${{ matrix.target }} (using cross)
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
# 32-bit x86
|
|
- i686-unknown-linux-gnu
|
|
backend_feature:
|
|
-
|
|
- --features ristretto255
|
|
- --features curve25519
|
|
- --features ecdsa
|
|
- --features ed25519
|
|
- --features ristretto255,curve25519,ecdsa,ed25519
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- uses: hecrj/setup-rust-action@v2
|
|
- run: cargo install cross
|
|
# Note: just use `cross` as you would `cargo`, but always
|
|
# pass the `--target=${{ matrix.target }}` arg. (Yes, really).
|
|
- run: cross test --verbose --target=${{ matrix.target }} --no-default-features ${{ matrix.backend_feature }}
|
|
- run: cross test --verbose --target=${{ matrix.target }} --no-default-features --features std ${{ matrix.backend_feature }}
|
|
|
|
simple-login-test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
toolchain:
|
|
- stable
|
|
- 1.83.0
|
|
name: test simple_login command-line example
|
|
steps:
|
|
- name: install expect
|
|
run: sudo apt-get install expect
|
|
- name: Checkout sources
|
|
uses: actions/checkout@main
|
|
- name: install rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: ${{ matrix.toolchain }}
|
|
override: true
|
|
- name: Run expect (which then runs cargo run)
|
|
run: expect -f scripts/simple_login.exp
|
|
|
|
digital-locker-test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
toolchain:
|
|
- stable
|
|
- 1.83.0
|
|
name: test digital_locker command-line example
|
|
steps:
|
|
- name: install expect
|
|
run: sudo apt-get install expect
|
|
- name: Checkout sources
|
|
uses: actions/checkout@main
|
|
- name: install rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: ${{ matrix.toolchain }}
|
|
override: true
|
|
- name: Run expect (which then runs cargo run)
|
|
run: expect -f scripts/digital_locker.exp
|
|
|
|
build-no-std:
|
|
name: Build with no-std on ${{ matrix.target }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
# for wasm
|
|
- wasm32-unknown-unknown
|
|
# for any no_std target
|
|
- thumbv6m-none-eabi
|
|
backend_feature:
|
|
-
|
|
- ristretto255
|
|
- curve25519
|
|
- ecdsa
|
|
- ed25519
|
|
- ristretto255,curve25519,ecdsa,ed25519
|
|
frontend_feature:
|
|
- argon2
|
|
- serde
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- uses: hecrj/setup-rust-action@v2
|
|
- run: rustup target add ${{ matrix.target }}
|
|
- run: cargo build --verbose --target=${{ matrix.target }} --no-default-features --features ${{ matrix.frontend_feature }},${{ matrix.backend_feature }}
|
|
|
|
benches:
|
|
name: cargo bench compilation
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
backend_feature:
|
|
- --features ristretto255
|
|
-
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@main
|
|
|
|
- name: Install stable toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
|
|
- name: Run cargo bench --no-run
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: bench
|
|
args: --no-default-features ${{ matrix.backend_feature }} --no-run
|
|
|
|
clippy:
|
|
name: cargo clippy
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@main
|
|
|
|
- name: Install stable toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
components: clippy
|
|
|
|
- name: Run cargo clippy
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: clippy
|
|
args: --all-targets --features argon2,std,curve25519,ecdsa,ed25519 -- -D warnings
|
|
|
|
- name: Run cargo doc
|
|
uses: actions-rs/cargo@v1
|
|
env:
|
|
RUSTDOCFLAGS: -D warnings
|
|
with:
|
|
command: doc
|
|
args: --no-deps --document-private-items --features argon2,std,curve25519,ecdsa,ed25519
|
|
|
|
format:
|
|
name: cargo fmt
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@main
|
|
|
|
- name: Install nightly toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: nightly
|
|
override: true
|
|
components: rustfmt
|
|
|
|
- name: Run cargo fmt
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: fmt
|
|
args: --all -- --check
|
|
|
|
taplo:
|
|
name: Taplo
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.cargo/.crates.toml
|
|
~/.cargo/.crates2.json
|
|
~/.cargo/bin/taplo
|
|
key: taplo
|
|
|
|
- name: Install Taplo
|
|
# Adding the --locked flag because of
|
|
# https://github.com/tamasfe/taplo/issues/242
|
|
run: cargo install taplo-cli --locked
|
|
|
|
- name: Checkout sources
|
|
uses: actions/checkout@main
|
|
|
|
- name: Run Taplo
|
|
run: taplo fmt --check
|
|
|
|
deny-check:
|
|
name: cargo-deny check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- uses: EmbarkStudios/cargo-deny-action@v2
|