aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin
Commit message (Collapse)AuthorAgeFilesLines
* bump depsJesse Luehrs2021-02-192-2/+2
|
* clippyJesse Luehrs2021-02-192-19/+16
|
* parse otpauth urls for totp codesJesse Luehrs2020-10-151-13/+29
|
* Zero-pad auth codeAsger Hautop Drewsen2020-10-151-1/+1
|
* ttyname was merged back into nixJesse Luehrs2020-10-121-25/+5
|
* clippyJesse Luehrs2020-10-121-2/+2
|
* implement rbw unlockedJesse Luehrs2020-07-255-0/+39
|
* also display the totp codeJesse Luehrs2020-07-252-0/+67
|
* add totp, uris, and custom fields to --full outputJesse Luehrs2020-07-251-4/+86
|
* prepare for ttyname from nixJesse Luehrs2020-07-031-18/+27
|
* mention that uuids can also be used to select entriesJesse Luehrs2020-06-231-4/+4
|
* fix regression in rbw get when not specifying a folderJesse Luehrs2020-06-231-32/+65
|
* support searching by folderJesse Luehrs2020-06-192-49/+159
|
* rustfmtJesse Luehrs2020-06-191-1/+2
|
* Print username for logins with --full (Jarkko Oranen)Jesse Luehrs2020-06-061-2/+3
|
* display the server's error message for incorrect passwordJesse Luehrs2020-05-281-15/+42
|
* properly handle empty string from pinentryJesse Luehrs2020-05-281-1/+3
|
* add authenticator 2fa supportJesse Luehrs2020-05-282-49/+175
|
* improve error message for agent crashesJesse Luehrs2020-05-251-8/+16
|
* remove more unnecessary error contextsJesse Luehrs2020-05-254-31/+15
|
* fix finding the active tty nameJesse Luehrs2020-05-251-5/+26
| | | | | apparently $TTY is a shell builtin variable, and not set in the actual environment
* remove some redundant error contextsJesse Luehrs2020-05-251-7/+6
|
* also suppress error if the socket file doesn't existJesse Luehrs2020-05-251-7/+7
|
* 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