Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Latest commit

 

History

History
29 lines (23 loc) · 904 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 904 Bytes

mpassgo

Golang port of MasterPassword, a password manager that generates passwords on the spot, rather than storing them.

Installation

Because I'm lazy I do not have any binaries that are precompiled. Luckily, this package is purely go, and therefore is go-gettable!

Library:

go get github.com/deanveloper/mpassgo

CLI App:

go get github.com/deanveloper/mpassgo/cli/mpw
mv $GOBIN/mpw <path> (if your GOBIN is not part of your path)

Algorithm

Since it is a port of MasterPassword, it uses the exact same algorithm, which can be found here and here.

Version

I'm honestly not sure what version of masterpassword that this complies to... I believe that it complies with masterpassword v3 although I could be wrong.