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
4 changes: 3 additions & 1 deletion .github/workflows/polyval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,9 @@ jobs:
- x86_64-unknown-linux-gnu
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly-2026-02-11 # pinned due to rust-lang/miri#4855
- run: rustup component add miri && cargo miri setup
- run: cargo miri test --target ${{ matrix.target }} --lib

Expand Down
3 changes: 2 additions & 1 deletion polyval/src/backend/soft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ use crate::{Block, Key, ParBlocks, Tag, field_element::FieldElement};
use zeroize::Zeroize;

/// State of a POLYVAL hash operation.
#[derive(Clone, Copy)]
#[derive(Clone)]
#[allow(missing_copy_implementations)]
pub(crate) struct State {
/// Hash key: fixed element of GF(2^128) that parameterizes the POLYVAL universal hash function.
///
Expand Down