Add kwallet-parser and kwallet-cli#439
Merged
bilelmoussaoui merged 5 commits intomainfrom Mar 30, 2026
Merged
Conversation
c2a6973 to
1fd36a4
Compare
📊 Code Coverage Report
Coverage report generated by cargo-tarpaulin |
fcf6f30 to
a19ebd1
Compare
A6GibKm
reviewed
Mar 29, 2026
Implements a read-only parser for KWallet file format (.kwl) supporting both legacy (Blowfish-ECB + SHA1) and modern (Blowfish-CBC + PBKDF2-SHA512) formats. Includes a CLI tool for reading and exporting wallet contents as JSON. This enables server-side auto-migration of KWallet keyring files to oo7-daemon format, similar to existing v0 format migration. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Similar to v0 format.
88fef50 to
60605cb
Compare
By storing a fake empty keyring and exposing it on the bus, the user can unlock it and we would automatically run the pending migration.
Following what kwallet c++ does.
60605cb to
7aaf19a
Compare
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.
Implements a read-only parser for KWallet file format (.kwl) supporting both legacy (Blowfish-ECB + SHA1) and modern (Blowfish-CBC + PBKDF2-SHA512) formats. Includes a CLI tool for reading and exporting wallet contents as JSON.
This enables server-side auto-migration of KWallet keyring files to oo7-daemon format, similar to existing v0 format migration.