wasm-lib-generate-strong-password
v0.1.3
Published
- Generate strong password
Downloads
3
Readme
Generate strong password
Features
- Generate strong password
Installation
npm i wasm-lib-generate-strong-password
Use
const wasm = require("wasm-lib-generate-strong-password");
(async () => {
let strongPassword = wasm.generate_password(30, true, true, true, true);
console.log(strongPassword);
})();
Option
- length (u8): length of password
- is_lowercase(bool): Include lowercase
- is_uppercase(bool): Include uppercase
- is_numeric(bool): Include numeric
- is_symbol(bool): Include symbol