Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 530 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 530 Bytes

masterpassword

Nim implementation of Master Password algorithm

mpwc is a command line password manager using this library.

Installation

nimble install masterpassword

Requires libsodium

Example usage

import masterpassword

let
  mkey = getMasterKey(pass = "The Secret Password", name = "Solitude")
  key = getSiteKey(mkey, "github.com", 1)
  pass = getSitePass(key, templateLong)