SpaceVim
A modular Vim/Neovim configuration
Home | About | Quick start guide | Documentation | Development | Community | Sponsors | 中文
This api provides some basic Functions for generating password.
let s:PW = SpaceVim#api#import('password')
let password = s:PW.generate_simple(8)
echom password
" you should see a string like `GAN0q7aE`
function name | description |
---|---|
generate_simple(len) |
generating simple password |
generate_strong(len) |
generating strong password |
generate_paranoid(len) |
generating paranoid password |
generate_numeric(len) |
generating numeric password |
generate_phonetic(len) |
generating phonetic password |
Powered by Jekyll