masterpassword

Master Password algorithm implementation

Pure Nim score 30/100 · tests present · docs generated

Summary

Latest Version 0.2.1
License MIT
CI Status Failing
Downloads 0
Last Indexed 2026-08-26 06:47

Authors

  • SolitudeSF

Installation

nimble install masterpassword
choosenim install masterpassword
git clone https://github.com/SolitudeSF/masterpassword

OS Compatibility

Platform Linux macOS Windows FreeBSD OpenBSD NetBSD Android iOS WASM Embedded
masterpassword - - - - - - -

Dependencies

Package Version Optional
nim >= 1.0.0", "nimcrypto#a065c1741836462762d18d2fced1fedd46095b02 No

Source

Repository https://github.com/SolitudeSF/masterpassword
Homepage https://github.com/SolitudeSF/masterpassword
Documentation View Documentation
Registry Source nimble_official

README

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)