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
6 changes: 6 additions & 0 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@ The `CredentialService` mostly just forwards events over to the UI service, minu
any details that are not necessary for the UI to know (like the response
channels mentioned above, which cannot be serialized over D-Bus anyway).

USB, hybrid, and NFC handler events pass through shared request lifecycle
handling, while each transport keeps its own public states. All selected
transports share one snapshot of their originating request. Terminal events
are scoped to that request, so stale streams cannot complete a newer request.
Cancellation wakes pending streams.

Actual interaction I/O is performed using the [libwebauthn][libwebauthn] library.

[libwebauthn]: https://github.com/linux-credentials/libwebauthn
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Improvements

- daemon: Wake pending credential streams when their request is cancelled.
- daemon: Ignore stale authenticator results from completed requests.
- ui: Remove process ID from credential prompt.

# 0.3.0 [2026-08-27]
Expand Down
Loading