Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 6 additions & 4 deletions .github/workflows/aes-gcm-siv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ jobs:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --release --no-default-features
- run: cargo test --target ${{ matrix.target }} --release
- run: cargo test --target ${{ matrix.target }} --release --all-features
- run: cargo build --target ${{ matrix.target }} --benches
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc
11 changes: 6 additions & 5 deletions .github/workflows/aes-gcm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ jobs:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --release --no-default-features --lib
- run: cargo test --target ${{ matrix.target }} --release
- run: cargo test --target ${{ matrix.target }} --release --features zeroize
- run: cargo test --target ${{ matrix.target }} --release --all-features
- run: cargo build --target ${{ matrix.target }} --benches
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc
28 changes: 22 additions & 6 deletions .github/workflows/aes-siv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,30 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.85.0 # MSRV
- stable
include:
# 32-bit Linux
- target: i686-unknown-linux-gnu
rust: 1.85.0 # MSRV
deps: sudo apt update && sudo apt install gcc-multilib
- target: i686-unknown-linux-gnu
rust: stable
deps: sudo apt update && sudo apt install gcc-multilib

# 64-bit Linux
- target: x86_64-unknown-linux-gnu
rust: 1.85.0 # MSRV
- target: x86_64-unknown-linux-gnu
rust: stable
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo test --release --no-default-features
- run: cargo test --release
- run: cargo test --release --all-features
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc
10 changes: 6 additions & 4 deletions .github/workflows/ascon-aead128.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ jobs:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --release --no-default-features
- run: cargo test --target ${{ matrix.target }} --release
- run: cargo test --target ${{ matrix.target }} --release --features zeroize
- run: cargo test --target ${{ matrix.target }} --release --all-features
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc
9 changes: 6 additions & 3 deletions .github/workflows/belt-dwp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ jobs:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --release --no-default-features --lib
- run: cargo test --target ${{ matrix.target }} --release
- run: cargo test --target ${{ matrix.target }} --release --all-features
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc
10 changes: 6 additions & 4 deletions .github/workflows/ccm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ jobs:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --release --no-default-features
- run: cargo test --target ${{ matrix.target }} --release
- run: cargo test --target ${{ matrix.target }} --release --all-features
- run: cargo build --target ${{ matrix.target }} --benches
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
#- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc
11 changes: 6 additions & 5 deletions .github/workflows/chacha20poly1305.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ jobs:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --release --no-default-features
- run: cargo test --target ${{ matrix.target }} --release
- run: cargo test --target ${{ matrix.target }} --release --features reduced-round
- run: cargo test --target ${{ matrix.target }} --release --all-features
- run: cargo build --target ${{ matrix.target }} --benches
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc

28 changes: 22 additions & 6 deletions .github/workflows/deoxys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,30 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.85.0 # MSRV
- stable
include:
# 32-bit Linux
- target: i686-unknown-linux-gnu
rust: 1.85.0 # MSRV
deps: sudo apt update && sudo apt install gcc-multilib
- target: i686-unknown-linux-gnu
rust: stable
deps: sudo apt update && sudo apt install gcc-multilib

# 64-bit Linux
- target: x86_64-unknown-linux-gnu
rust: 1.85.0 # MSRV
- target: x86_64-unknown-linux-gnu
rust: stable
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo test --release --no-default-features --lib
- run: cargo test --release
- run: cargo test --release --all-features
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc
28 changes: 22 additions & 6 deletions .github/workflows/eax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,30 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.85.0 # MSRV
- stable
include:
# 32-bit Linux
- target: i686-unknown-linux-gnu
rust: 1.85.0 # MSRV
deps: sudo apt update && sudo apt install gcc-multilib
- target: i686-unknown-linux-gnu
rust: stable
deps: sudo apt update && sudo apt install gcc-multilib

# 64-bit Linux
- target: x86_64-unknown-linux-gnu
rust: 1.85.0 # MSRV
- target: x86_64-unknown-linux-gnu
rust: stable
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo test --release --no-default-features
- run: cargo test --release
- run: cargo test --release --all-features
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
#- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc
10 changes: 6 additions & 4 deletions .github/workflows/ocb3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ jobs:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --release
- run: cargo test --target ${{ matrix.target }} --release --features zeroize
- run: cargo test --target ${{ matrix.target }} --release --all-features
- run: cargo build --target ${{ matrix.target }} --benches
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc
10 changes: 6 additions & 4 deletions .github/workflows/xaes-256-gcm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ jobs:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --release --no-default-features --lib
- run: cargo test --target ${{ matrix.target }} --release
- run: cargo test --target ${{ matrix.target }} --release --all-features
- run: cargo build --target ${{ matrix.target }} --benches
- run: cargo test --target ${{ matrix.target }} --lib --no-default-features
- run: cargo test --target ${{ matrix.target }} --lib
#- run: cargo test --target ${{ matrix.target }} --lib --features zeroize
- run: cargo test --target ${{ matrix.target }} --all-features --lib
- run: cargo test --target ${{ matrix.target }} --all-features --release
- run: cargo test --target ${{ matrix.target }} --all-features --doc