A Ubuntu Touch password management app aiming to be compatible with pass
Go to file
2019-03-22 17:40:44 +01:00
.github/ISSUE_TEMPLATE Initial Commit 2019-03-13 19:38:12 +01:00
assets Inital base for use GPG && GpgmE 2019-03-20 23:22:11 +01:00
plugins Externalize build of third parties from the main build 2019-03-22 16:11:20 +01:00
po Prettify info page 2019-03-22 17:40:44 +01:00
qml Prettify info page 2019-03-22 17:40:44 +01:00
tests/unit UP 2019-03-22 00:11:36 +01:00
third Externalize build of third parties from the main build 2019-03-22 16:11:20 +01:00
.astylerc Add style command && applied new style format to existing code && setup tests plugins 2019-03-21 18:32:44 +01:00
.gitignore Prettify info page 2019-03-22 17:40:44 +01:00
.gitmodules Inital base for use GPG && GpgmE 2019-03-20 23:22:11 +01:00
clickable.json Externalize build of third parties from the main build 2019-03-22 16:11:20 +01:00
CMakeLists.txt Externalize build of third parties from the main build 2019-03-22 16:11:20 +01:00
LICENSE Initial Commit 2019-03-13 19:38:12 +01:00
main.cpp Prettify info page 2019-03-22 17:40:44 +01:00
manifest.json.in Prettify info page 2019-03-22 17:40:44 +01:00
README.md Prettify info page 2019-03-22 17:40:44 +01:00
UTPass.apparmor Add style command && applied new style format to existing code && setup tests plugins 2019-03-21 18:32:44 +01:00
UTPass.desktop.in Initial Commit 2019-03-13 19:38:12 +01:00

UTPass

A Ubuntu Touch password management app aiming to be compatible with ZX2C4s pass command line application the standard unix password manager.

Building

  • Install clickable.
  • Clone this repo : git clone --recursive https://github.com/qrouland/UTPass
  • Move to app directory: cd UTPass
  • Build third parties : clickable third_build
  • Build the app : clickable

For more options/details see the clickable documentation

Custom clickable command

  • clickable third_build : build third dependencies for arm architecture
  • clickable third_build_d : build third dependencies for amd64 architecture
  • clickable third_clean : clean third parties
  • clickable style : reformat the code (Required astyle & qmlfmt installed)

Contributing

Any contributions are welcome using the github issue & pull request system. Please respect the code style format by running clickable style before committing.

Features

The goal is to be closest possible of the features offer by ZX2C4s pass command line application:


  • pass init [--path=subfolder,-p subfolder] gpg-id... Initialize new password storage and use gpg-id for encryption. Selectively reencrypt existing passwords using new gpg-id.
    • Interactive dialog to init a new password storage
    • Support subfolder
    • Support reencrypt

  • pass [ls] [subfolder] List passwords.
    • UI allowing to navigate through the password store showing the available passwords

  • pass find pass-names... List passwords that match pass-names
    • Search bar allowing searchs by pass-names

  • pass [show] [--clip[=line-number],-c[line-number]] pass-name Show existing password and optionally put it on the clipboard. If put on the clipboard, it will be cleared in 45 seconds.
    • Click on a pass show the password
    • Add option to put the password to the clipboard
    • Clearing clipboard after 45 secs
    • Line number option ???

  • pass grep search-string Search for password files containing search-string when decrypted.
    • TBD

  • pass insert [--echo,-e | --multiline,-m] [--force,-f] pass-name Insert new password. Optionally, echo the password back to the console during entry. Or, optionally, the entry may be multiline. Prompt before overwriting existing password unless forced.
    • TBD

  • pass edit pass-name Insert a new password or edit an existing password using editor.
    • TBD

  • pass generate [--no-symbols,-n] [--clip,-c] [--in-place,-i | --force,-f] pass-name [pass-length] Generate a new password of pass-length (or 25 if unspecified) with optionally no symbols. Optionally put it on the clipboard and clear board after 45 seconds. Prompt before overwriting existing password unless forced. Optionally replace only the first line of an existing file with a new password.
    • TBD

  • pass rm [--recursive,-r] [--force,-f] pass-name Remove existing password or directory, optionally forcefully.
    • TBD

  • pass mv [--force,-f] old-path new-path Renames or moves old-path to new-path, optionally forcefully, selectively reencrypting.
    • TBD

  • pass cp [--force,-f] old-path new-path Copies old-path to new-path, optionally forcefully, selectively reencrypting.

    • TBD

  • pass git git-command-args... If the password store is a git repository, execute a git command specified by git-command-args.
    • TBD

  • pass help Show this text.

    • TBD

  • pass version Show version information.
    • TBD

License

Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

Useful Links

Some useful links related to UTpass development :