Skip to content
Draft
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
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,11 @@ jobs:
- name: The checks must pass against freshly generated vectors
run: cargo run -p kt-interop --bin kt-interop-report -- --vectors interop/vectors --out "$RUNNER_TEMP/fresh"

# search.json, monitor.json and update.json are excluded because they cannot be
# reproducible: all three come from a live log that stamps wall-clock times and draws random
# commitment openings. See interop/README.md. Every other file must regenerate to the same bytes,
# Four files are excluded because they cannot be reproducible. search.json, monitor.json
# and update.json come from a live log that stamps wall-clock times and draws random
# commitment openings; tree-head-p256.json carries ECDSA signatures, and Go's crypto/ecdsa
# draws a nonce per signature. See interop/README.md. Every other file must regenerate to
# the same bytes,
# so an upstream bump that changes behaviour shows up as a diff rather than a silent
# pass — and the two exceptions are covered by the fresh-generation run above, which
# is a stronger check for them than a diff would be.
Expand All @@ -115,4 +117,5 @@ jobs:
git diff --exit-code -- interop/vectors \
':(exclude)interop/vectors/search.json' \
':(exclude)interop/vectors/monitor.json' \
':(exclude)interop/vectors/update.json'
':(exclude)interop/vectors/update.json' \
':(exclude)interop/vectors/tree-head-p256.json'
198 changes: 198 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/kt-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ curve25519-dalek = { version = "5.0.0", default-features = false, features = ["a
ed25519-dalek = { version = "3.0.0", default-features = false, features = ["alloc"] }
hmac = { version = "0.13.0", default-features = false }
kt-wire.workspace = true
p256 = { version = "0.14.0", default-features = false, features = ["arithmetic", "alloc", "ecdsa"] }
sha2 = { version = "0.11.0", default-features = false }

[lints]
Expand Down
Loading
Loading