1
0
Fork 0
mirror of https://github.com/gopasspw/gopass.git synced 2020-06-03 16:52:30 +00:00
Go to file
Dominik Schulz 422e032632
Add tests (#1406)
RELEASE_NOTES=n/a

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
2020-06-01 22:32:22 +02:00
.github do not mark issues stale when part of a milestone (#1297) 2020-04-29 00:27:41 +02:00
cmd fix HasStdin context-init (#1404) 2020-05-31 21:51:27 +02:00
docs Add debug package (#1396) 2020-05-29 13:47:35 +02:00
internal Add tests (#1406) 2020-06-01 22:32:22 +02:00
pkg Add debug package (#1396) 2020-05-29 13:47:35 +02:00
tests Print generated password before syncing (#1399) 2020-05-29 23:04:42 +02:00
.codeclimate.yml Adjust codeclimate and codecov settings (#603) 2018-01-04 14:14:54 +01:00
.codecov.yml Add experimental crypto backend (#645) 2018-02-20 12:11:41 +01:00
.errcheck.excl Update terminal UI libs (#789) 2018-05-21 14:11:28 +02:00
.gitignore Cleanup repository root (#1390) 2020-05-26 15:24:52 +02:00
.goreleaser.yml add clean and codecompletion build steps 2020-04-29 15:25:05 +02:00
.revive.toml Codequality: add revive linter (#822) 2018-06-01 10:28:20 +02:00
.travis.yml Cleanup travis config (#1389) 2020-05-26 07:47:05 +02:00
CHANGELOG.md Tag v1.9.2 2020-05-13 21:25:22 +02:00
CONTRIBUTING.md Cleanup (#1304) 2020-04-29 22:05:10 +02:00
go.mod Add tests (#1406) 2020-06-01 22:32:22 +02:00
go.sum Add tests (#1406) 2020-06-01 22:32:22 +02:00
LICENSE Initial commit 2017-02-02 15:53:46 +01:00
main_test.go Add debug package (#1396) 2020-05-29 13:47:35 +02:00
main.go Add debug package (#1396) 2020-05-29 13:47:35 +02:00
Makefile Add debug package (#1396) 2020-05-29 13:47:35 +02:00
README.md Cleanup travis config (#1389) 2020-05-26 07:47:05 +02:00
VERSION Tag v1.9.2 2020-05-13 21:25:22 +02:00
xc_test.go Cleanup repository root (#1390) 2020-05-26 15:24:52 +02:00

gopass Gopher by Vincent Leinweber, remixed from the Renée French original Gopher

gopass

Build Status Go Report Card MIT License Github All Releases codecov CII Best Practices

The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.

Table of Contents

  1. Abstract
  2. Demo
  3. Features
  4. Installation
  5. Development
  6. Credit & License
  7. Community
  8. Integrations
  9. Mobile apps
  10. Contributing
  11. Acknowledgements
  12. Further Documentation

Abstract

Password management should be simple and follow Unix philosophy. With pass, each secret lives inside of a gpg encrypted file whose filename is the title of the website or resource that requires the secret. These encrypted files may be organized into meaningful folder hierarchies, copied from computer to computer, and, in general, manipulated using standard command line file management utilities. - passwordstore.org

gopass is a rewrite of the pass password manager in Go with the aim of making it cross-platform and adding additional features. Our target audience are professional developers and sysadmins (and especially teams of those) who are well versed with a command line interface. One explicit goal for this project is to make it more approachable to non-technical users. We go by the UNIX philosophy and try to do one thing and do it well, providing a stellar user experience and a sane, simple interface.

Demo

asciicast

Features

Please see docs/features.md for an extensive list of all features along with several usage examples.

Feature pass gopass State Description
Secure secret storage stable Securely storing secrets encrypted with GPG
Recipient management beta Easily manage multiple users of each store
Multiple stores beta Mount multiple stores in your root store, like file systems
password quality assistance beta Checks existing or new passwords for common flaws
password leak checker integration Perform offline checks against known leaked passwords
PAGER support stable Automatically invoke a pager on long output
JSON API integration Allow gopass to be used as a native extension for browser plugins
Automatic fuzzy search stable Automatically search for matching store entries if a literal entry was not found
gopass sync beta Easy to use syncing of remote repos and GPG keys
Desktop Notifications beta Display desktop notifications and completing long running operations
Editing Recipients per Secret beta Select recipients per secret when encrypting
Extensions Extend gopass with custom commands using our API

Installation

If you have Go 1.14 (or greater) installed:

go get github.com/gopasspw/gopass

Otherwise, please see docs/setup.md.

Upgrade

To upgrade with Go installed, run:

go get -u github.com/gopasspw/gopass

Otherwise, use the setup docs mentioned in the installation section to reinstall the latest version.

Development

This project uses GitHub Flow. In other words, create feature branches from master, open an PR against master, and rebase onto master if necessary.

We aim for compatibility with the latest stable Go Release only.

While this project is maintained by volunteers in their free time we aim to triage issues weekly and release a new version at least every quarter.

Credit & License

gopass was created by the nice folks from JustWatch and licensed under the terms of the MIT license.

Maintainers of this repository:

Please refer to the Git commit log for a complete list of contributors.

Community

gopass is developed in the open. Here are some of the channels we use to communicate and contribute:

Integrations

  • gopassbridge: Browser plugin for Firefox, Chrome and other Chromium based browsers
  • kubectl gopass: Kubernetes / kubectl plugin to support reading and writing secrets directly from/to gopass.
  • gopass alfred: Alfred workflow to use gopass from the Alfred Mac launcher
  • gopass-git-credentials: Integrate gopass as an git-credential helper
  • gopass-hibp: haveibeenpwned.com leak checker
  • gopass-jsonapi: native messaging for browser plugins, e.g. gopassbridge

Mobile apps

Contributing

We welcome any contributions. Please see the CONTRIBUTING.md file for instructions on how to submit changes. If your are planning on making more elaborate or controversial changes, please discuss them on the gopass-developers mailing list or on IRC before sending a pull request.

Acknowledgements

gopass was initially started by Matthias Loibl and Dominik Schulz. The majority of its development has been sponsored by JustWatch.

Further Documentation

External Documentation