Skryvvara / fruitpass

Fruitpass is a small command line tool written in Go which generates long but memorisable passwords using a list of adjectives, colours and fruits and combining them together while adding a number and a special symbol.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


About

Fruitpass is a command line utility written in Go to generate password by using a list of adjectives, colours, and fruits and also adds a random number and a special symbol.

The goal was to get password that are easy (or easier) to memorize than long string of random symbols.

Installation

When building this project you end up with a single binary called fruitpass (on MacOS and Linux) or fruitpass.exe on Windows.

When using MacOS or Linux you can use the Makefile to install the tool into your /usr/local/bin folder. Simply run make install. This command could require sudo.

Or install it manually

go mod tidy
go build -o bin/fruitpass
cp bin/fruitpass /usr/local/bin/fruitpass

Example usage

Example usage with base64 encoding

Special Thanks

Drew the awesome logo for Fruitpass. Thank you very much!

About

Fruitpass is a small command line tool written in Go which generates long but memorisable passwords using a list of adjectives, colours and fruits and combining them together while adding a number and a special symbol.

License:MIT License


Languages

Language:Go 86.5%Language:Makefile 13.5%