masterpassword

Master Password algorith implementation

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

Summary

Latest Version Unknown
License MIT
CI Status Passing
Downloads 0
Last Indexed 2026-07-21 05:24

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 - - - - - - -

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)