1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 22:40:04 +08:00
SpaceVim/docs/api/password.md
2020-09-14 22:47:49 +08:00

35 lines
913 B
Markdown

---
title: "password API"
description: "password API provides some basic functions for generating password"
---
# [Available APIs](../) >> password
<!-- vim-markdown-toc GFM -->
- [Intro](#intro)
- [Functions](#functions)
<!-- vim-markdown-toc -->
## Intro
This api provides some basic Functions for generating password.
```vim
let s:PW = SpaceVim#api#import('password')
let password = s:PW.generate_simple(8)
echom password
" you should see a string like `GAN0q7aE`
```
## Functions
| 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 |