aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin
Commit message (Collapse)AuthorAgeFilesLines
* fix error if `rbw config set base_url` is run before setting emailJesse Luehrs2020-05-231-4/+10
|
* give a more useful error if rbw is misconfiguredJesse Luehrs2020-05-231-0/+19
|
* wrap log lines when necessaryJesse Luehrs2020-05-231-1/+6
|
* clean up error output a bitJesse Luehrs2020-05-231-31/+62
| | | | display a prefix of `rbw get: foo` instead of `rbw: get: foo`
* remove unnecessary explicit dependencyJesse Luehrs2020-05-231-1/+1
|
* make log lines emitted by the cli have a simpler formatJesse Luehrs2020-05-231-0/+4
|
* clean up some redundant parts of error messagesJesse Luehrs2020-05-231-9/+6
|
* fix some structopt configurationJesse Luehrs2020-05-231-3/+14
| | | | missed a few options when converting from clap
* don't allow setting lock_timeout to 0Jesse Luehrs2020-05-221-2/+7
| | | | | this isn't useful, because the agent will just drop the keys as soon as they are unlocked, before they can be used to decrypt anything
* 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-212-9/+10
|
* 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
* maintain folder and uris when editing an entryJesse Luehrs2020-05-031-23/+33
|
* fix editing organization entriesJesse Luehrs2020-05-031-2/+10
|
* start adding support for different entry typesJesse Luehrs2020-05-032-111/+511
|
* add command to clear a config settingJesse Luehrs2020-05-032-0/+31
|
* fix unlocking org keys on initial loginJesse Luehrs2020-05-032-15/+53
|
* allow storing password databases from different serversJesse Luehrs2020-05-032-58/+71
| | | | | this should allow easy switching of servers by just `rbw config set base_url`
* simplifyJesse Luehrs2020-05-034-19/+7
|
* 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-031-2/+14
|
* also store org keys in the local dbJesse Luehrs2020-05-031-4/+7
|
* refactor encrypt/decrypt methods to indicate symmetric encryptionJesse Luehrs2020-05-031-4/+6
| | | | since we're going to have to also implement asymmetric encryption
* save the private key to the local dbJesse Luehrs2020-05-031-1/+2
|
* save org id in the sync dbJesse Luehrs2020-05-021-0/+1
|
* expand the protocol to allow decrypting with organization keysJesse Luehrs2020-05-024-30/+66
| | | | 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-024-0/+56
|
* 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-201-0/+23
|
* implement adding into a folderJesse Luehrs2020-04-192-2/+90
|
* 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-192-2/+41
|
* 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-191-0/+31
|
* allow matching on substringsJesse Luehrs2020-04-181-22/+171
|
* allow multiple attempts for password entryJesse Luehrs2020-04-181-35/+87
|
* refactorJesse Luehrs2020-04-182-5/+5
|
* implement edit commandJesse Luehrs2020-04-182-32/+97
|
* better decrypt_cipher error handlingJesse Luehrs2020-04-181-16/+40
|
* enable env_logger in the main appJesse Luehrs2020-04-181-0/+5
|
* implement removeJesse Luehrs2020-04-182-5/+42
|
* stop using the api cipher struct publiclyJesse Luehrs2020-04-182-38/+26
|