The World's Most Sane Password Generator

// npm install --save @root/genpass
import GenPass from "@root/genpass";

let entropy = GenPass.generateBytes(64);
let password = GenPass.encodeChars(GenPass.bases.base32_crockford, entropy, 16);
password = GenPass.hyphenate(password);
Alphanumeric (Base M) 12
 
abc123
Special Characters (Base M) 12
 
abc123
Hex (Base 16) 12
 
0123456789abcdef

Strength
Advanced Options
Exclude Unsafe Characters
Custom Overrides