aboutsummaryrefslogtreecommitdiffstats
path: root/src/protocol.rs
Commit message (Collapse)AuthorAgeFilesLines
* make clipboard manipulation happen from the agentJesse Luehrs2023-07-181-0/+3
| | | | | | | | | on x11 systems, you can't just send data to the os to store on the clipboard, you just register which application currently owns the clipboard and then other applications can use ipc to request the owning application to send them the clipboard data. this requires there to be an application still running in order to respond to those requests. luckily, we have one of those available in the form of the agent.
* more clippy cleanupsJesse Luehrs2023-02-181-3/+0
|
* clippyJesse Luehrs2021-12-151-0/+1
|
* add a separate "register" command to log in with api keysJesse Luehrs2021-10-271-1/+1
|
* start working on apikey authenticationJesse Luehrs2021-10-271-0/+1
| | | | | | | | | | not entirely working yet, because api keys aren't allowed to use the offline_access scope which provides access to the oauth refresh token. we will probably need to move to using stable device identifiers (should be able to generate one when the config is first created) and move this logic to a separate "rbw register" command which just does an apikey login but doesn't try to store any data, and then use the normal login flow after that
* clippyJesse Luehrs2021-07-051-0/+3
|
* implement rbw unlockedJesse Luehrs2020-07-251-0/+1
|
* use the crate version for the protocol versionJesse Luehrs2020-05-211-1/+11
|
* maintain folder and uris when editing an entryJesse Luehrs2020-05-031-1/+1
|
* expand the protocol to allow decrypting with organization keysJesse Luehrs2020-05-021-3/+9
| | | | not implemented yet, just changing the interface
* check protocol version before agent communicationJesse Luehrs2020-05-021-0/+4
|
* remove unnecessary commentsJesse Luehrs2020-04-181-3/+0
|
* add encryption to the agent protocolJesse Luehrs2020-04-181-0/+2
|
* rename some stuff to be less confusingJesse Luehrs2020-04-121-0/+27