aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* drop in-memory keys when changing configurationJesse Luehrs2020-05-221-0/+8
|
* use structopt instead of clapJesse Luehrs2020-05-222-360/+244
|
* use the crate version for the protocol versionJesse Luehrs2020-05-213-10/+21
|
* don't pretend that the version is 0 if the version command failsJesse Luehrs2020-05-211-13/+5
| | | | | | this was intended to paper over agents that didn't recognize the version command, but they almost certainly don't exist at this point and it makes the error messages super confusing
* don't expect the refresh token response to have a keyJesse Luehrs2020-05-171-2/+0
| | | | the official server doesn't do this, and i don't use it anyway
* maintain folder and uris when editing an entryJesse Luehrs2020-05-035-44/+94
|
* fix editing organization entriesJesse Luehrs2020-05-033-4/+18
|
* start adding support for different entry typesJesse Luehrs2020-05-036-209/+866
|
* add command to clear a config settingJesse Luehrs2020-05-033-1/+32
|
* fix unlocking org keys on initial loginJesse Luehrs2020-05-032-15/+53
|
* allow storing password databases from different serversJesse Luehrs2020-05-035-72/+97
| | | | | this should allow easy switching of servers by just `rbw config set base_url`
* simplifyJesse Luehrs2020-05-038-43/+61
|
* remove some old debuggingJesse Luehrs2020-05-031-6/+3
|
* fix some unwrapsJesse Luehrs2020-05-032-3/+6
|
* pass along the entry's org id when requesting decryptionJesse Luehrs2020-05-031-7/+16
|
* also make the agent store decrypted org keys in memoryJesse Luehrs2020-05-034-7/+107
|
* also store org keys in the local dbJesse Luehrs2020-05-034-7/+46
|
* refactor encrypt/decrypt methods to indicate symmetric encryptionJesse Luehrs2020-05-033-87/+124
| | | | since we're going to have to also implement asymmetric encryption
* save the private key to the local dbJesse Luehrs2020-05-034-5/+13
|
* move to ring for things that it supportsJesse Luehrs2020-05-033-54/+45
| | | | | it doesn't support AES_256_CBC_HMAC_SHA256, so we can't move that over yet (see https://github.com/briansmith/ring/issues/588)
* save org id in the sync dbJesse Luehrs2020-05-023-0/+5
|
* expand the protocol to allow decrypting with organization keysJesse Luehrs2020-05-025-33/+75
| | | | not implemented yet, just changing the interface
* tell the agent to quit if the version command errorsJesse Luehrs2020-05-021-4/+19
| | | | this should allow more seamless upgrades from the previous version
* check protocol version before agent communicationJesse Luehrs2020-05-025-0/+60
|
* wait for the agent to exit before returning from quitJesse Luehrs2020-05-021-0/+17
|
* don't kill the agent if it fails to parse a messageJesse Luehrs2020-05-022-2/+16
|
* add docsJesse Luehrs2020-04-201-36/+178
|
* add folder as an option for list fieldsJesse Luehrs2020-04-203-2/+54
|
* only handle login entries for nowJesse Luehrs2020-04-191-20/+25
|
* implement adding into a folderJesse Luehrs2020-04-195-4/+226
|
* allow selecting entries by id as wellJesse Luehrs2020-04-191-9/+21
|
* add some command aliasesJesse Luehrs2020-04-191-10/+14
|
* allow listing various different fieldsJesse Luehrs2020-04-192-4/+55
|
* allow creating entries with associated urisJesse Luehrs2020-04-194-4/+56
|
* more model cleanupJesse Luehrs2020-04-191-12/+0
|
* clean up api model structsJesse Luehrs2020-04-191-112/+61
|
* allow getting notes along with a passwordJesse Luehrs2020-04-192-2/+10
|
* sort the rbw list outputJesse Luehrs2020-04-191-6/+11
|
* implement history command to get password historyJesse Luehrs2020-04-192-0/+35
|
* track password historyJesse Luehrs2020-04-195-2/+93
|
* these fields don't need to be public anymoreJesse Luehrs2020-04-191-6/+6
|
* allow matching on substringsJesse Luehrs2020-04-182-23/+174
|
* allow multiple attempts for password entryJesse Luehrs2020-04-182-35/+94
|
* better error messages for incorrect passwordsJesse Luehrs2020-04-183-9/+40
|
* handle pinentry ERR linesJesse Luehrs2020-04-182-0/+33
|
* remove unnecessary commentsJesse Luehrs2020-04-181-3/+0
|
* ensure we clear the entire memory for the locked vecJesse Luehrs2020-04-181-0/+1
|
* refactorJesse Luehrs2020-04-183-47/+70
|
* implement edit commandJesse Luehrs2020-04-184-32/+186
|
* better decrypt_cipher error handlingJesse Luehrs2020-04-181-16/+40
|