aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* also bump Cargo.lock0.1.1Jesse Luehrs2020-05-021-1/+1
|
* version bumpJesse Luehrs2020-05-022-1/+14
|
* also include the license file in the debian packageJesse Luehrs2020-05-021-0/+1
| | | | so that the arch package can extract it more easily
* add makefile and packaging informationJesse Luehrs2020-05-023-0/+68
|
* package metadatav0.1.00.1.0Jesse Luehrs2020-04-202-0/+39
|
* add a basic readmeJesse Luehrs2020-04-201-0/+46
|
* add docsJesse Luehrs2020-04-203-37/+192
|
* add folder as an option for list fieldsJesse Luehrs2020-04-203-2/+54
|
* only handle login entries for nowJesse Luehrs2020-04-191-20/+25
|
* make pass-import support adding into foldersJesse Luehrs2020-04-191-2/+10
|
* 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
|
* make the pass import script also set the uri when possibleJesse Luehrs2020-04-191-2/+13
|
* allow creating entries with associated urisJesse Luehrs2020-04-194-4/+56
|
* add script to import from passJesse Luehrs2020-04-191-0/+20
|
* more model cleanupJesse Luehrs2020-04-191-12/+0
|
* clean up api model structsJesse Luehrs2020-04-191-112/+61
|
* add explicit dependency versionsJesse Luehrs2020-04-192-57/+57
|
* 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-197-2/+95
|
* 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
|
* enable env_logger in the main appJesse Luehrs2020-04-181-0/+5
|
* implement removeJesse Luehrs2020-04-185-5/+86
|
* stop using the api cipher struct publiclyJesse Luehrs2020-04-185-57/+87
|
* refactorJesse Luehrs2020-04-183-59/+62
|
* refactorJesse Luehrs2020-04-182-36/+87
|
* support adding entries with notesJesse Luehrs2020-04-182-12/+11
|
* implement saving generated passwordsJesse Luehrs2020-04-181-3/+40
|
* don't use locked vecs for pwgenJesse Luehrs2020-04-182-12/+8
| | | | | i'm doing all of my password generation in the client, which really doesn't need it
* implement add commandJesse Luehrs2020-04-185-8/+231
|
* implement editing a string in a text editorJesse Luehrs2020-04-185-1/+72
|
* add encryption to the agent protocolJesse Luehrs2020-04-185-0/+108
|
* make daemonizing optionalJesse Luehrs2020-04-181-3/+15
|
* keep daemon log filesJesse Luehrs2020-04-182-0/+20
|
* drop timeout due to tokio limitationsJesse Luehrs2020-04-181-1/+2
|
* fix private key timeout handlingJesse Luehrs2020-04-121-18/+73
|
* avoid holding the state mutex for as longJesse Luehrs2020-04-121-9/+4
| | | | | in particular, don't hold it over pinentry calls, since those can take arbitrarily long