Add Ed25519 signed license verification with key rotation and CI guard#50
Merged
Add Ed25519 signed license verification with key rotation and CI guard#50
Conversation
…09 ignore - Run cargo fmt --all - Fix clippy lints: redundant closures, uninlined_format_args, approx_constant, const_is_empty in license keyring test - Pin time crate to 0.3.37 (0.3.47 uses edition2024, incompatible with MSRV 1.83) - Add .cargo/audit.toml ignoring RUSTSEC-2026-0009 (time crate DoS, not exploitable in our usage, fix requires Rust 1.88) - Add same ignore to deny.toml
4ba9786 to
bae5703
Compare
- Merge origin/main (glibc build fix) - Fix single & segment boundary in split_raw_words (security) - Use exact match == TIRITH=0 (prevents false bypass) - Skip flags in resolve_command_wrapper - Remove dead code in is_tirith_command - Remove quote-stripping from is_env_assignment Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan
🤖 Generated with Claude Code
Note
Update
tests::test_keyring_non_emptyincrates::tirith_core::licenseto assert a localnot_emptybinding for Ed25519 signed license verification with key rotation and CI guardRefactor the test in crates/tirith-core/src/license.rs to bind
let not_empty = !KEYRING.is_empty();with an inline#[allow(clippy::const_is_empty)]and assert the binding.📍Where to Start
Start with the
tests::test_keyring_non_emptytest in crates/tirith-core/src/license.rs.Macroscope summarized 88f87a0.