• v1.3.1 43b8d3b618

    Version 1.3.1 Stable

    max released this 2023-02-16 23:55:43 +00:00 | 0 commits to master since this release

    Updates

    • Update to Go 1.20.1

    Improvements

    • Use switch statements for argument matching
    • Use worker/pool concurrency pattern when generating characters for a password
    Downloads
  • v1.3.0 bb4dda5d9f

    Version 1.3.0 Stable

    max released this 2023-02-07 14:36:47 +00:00 | 5 commits to master since this release

    Updates

    • Update to Go 1.20 and update cryptographic functionality appropriately
    • Release binaries for ARM architecture (no ARM for Darwin) and OS freebsd and plan9 (none of these new binaries are compressed with UPX in release)

    Improvements

    • Project refactor, code quality improvement

    New Features

    • Excluded characters now defined by -r=
    • Remove all symbols by passing -s
    • Get the version and help output with -v and -h respectively
    • See full updated usage with -h or by checking README.md
    Downloads
  • v1.2.2 e1ced3f76d

    Version 1.2.2 Stable

    max released this 2023-01-30 06:09:00 +00:00 | 9 commits to master since this release

    Security

    • Cryptographically generate password characters
    Downloads
  • v1.2.1 710f96e9e7

    Version 1.2.1 Stable

    max released this 2023-01-29 23:48:54 +00:00 | 14 commits to master since this release

    Improvements

    • Gracefully handle errors instead of panic for cleaner output
    Downloads
  • v1.2.0 87fa1107d7

    Version 1.2.0 Stable

    max released this 2022-12-20 00:21:49 +00:00 | 17 commits to master since this release

    Improvements

    • Better error messages
    • Smaller binary sizes

    New Features

    • Ability to specify excluded characters (see README.md for up to date usage)
    Downloads
  • v1.1 8114d2a6c9

    Version 1.1 Stable

    max released this 2022-10-21 15:07:01 +00:00 | 27 commits to master since this release

    The first version 1.0 was not cryptographically secure so it will not be released. v1.1 uses proper cryptography libraries to securely seed rand() so that an attacker cannot brute force passwords with a series of timestamps.

    How to install/use for Windows:

    1. Download Windows binary, it may be helpful to simply rename it to "gopass" (make sure to add .exe, this won't need to be typed to execute the file from the CLI interface, but it is required for Windows to recognize the binary) to keep commands shorter.
    2. Move the file to your `C:\Users\Username` directory
    3. Opening the console without Administrator privileges will put you in the directory mentioned above by default
    4. Now type `gopass [number of characters]` (Ex. `gopass 64`) to generate a new password!
    

    How to install/use for Linux:

    1. Download Linux binary, it may be helpful to simply rename it to "gopass" to keep commands shorter.
    2. Move the file to your home directory.
    3. Opening your terminal should put you in your home directory by default, if not, just type `cd` to get sent back to home.
    4. Now type `gopass [number of characters]` (Ex. `gopass 64`) to generate a new password!
    Downloads