Add password-protected .accdb/.mdb file support#3
Merged
Conversation
- LOOKUP_FLAG rows contain valid row data relocated to the page, not overflow pointers as previously assumed - Stale entries (find_row failure) are logged but not counted as skipped_rows - Eliminates VBA read failures on databases where Access relocated MSysAccessStorage rows to overflow pages - Add test with overflow_enc_vbaV2003.mdb Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Support reading Access 2007+ databases encrypted with Agile Encryption (AES-CBC). The --password global option enables decryption for all subcommands (tables, schema, export, vba, queries, prop, ver). Key changes: - agile.rs: EncryptionInfo XML parsing, key derivation, password verification, and per-page AES-CBC decryption - file.rs: detect encryption in open(), decrypt in open_with_password() - CLI: --password global option with integration tests - Security: quick-xml for XML parsing, subtle for constant-time hash comparison, zeroize for automatic key material cleanup Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Bump jetdb and jetdb-cli to 0.2.0 - Update READMEs: add --password example, document Agile Encryption support, remove resolved LOOKUP_FLAG limitation, add MS-OFFCRYPTO acknowledgment - Update lib_doc.md: add open_with_password section and examples Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- data.rs: use let-else and .ok()? instead of .try_into().unwrap() - prop.rs: return InvalidProperty error instead of panicking on slice conversion - file.rs: collapse nested if into if-let with && Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- scripts/quality-check.sh: run 6 CI checks in sequence with formatted summary - crates/complexity-filter/: Rust crate for extracting complexity metrics from NDJSON (excluded from workspace) - AGENTS.md: add Quality Check section - .gitignore: use **/target/ to cover non-workspace crates 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
unwrap()with safe error handling in data/file/propscripts/quality-check.sh)Verification
🤖 Generated with Claude Code