Files
golib/password/README.md
Nicolas JUHEL 55affe9e7c - Add some README.md
- Fix some error
- Refactor dependancies + bump dependancies
- Change repos README.md
2020-07-14 13:28:48 +02:00

22 lines
540 B
Markdown

# Password pakcage
Help generate random string usable in password....
## Example of implement
In your file, import this lib :
```go
import "github.com/nabbar/golib/password"
```
```go
// generate a password of 24 chars len
newPass := Generate(24)
```
The generated password can having this char :
- lower letter : abcdefghijklmnopqrstuvwxyz
- upper letter : ABCDEFGHIJKLMNOPQRSTUVWXYZ
- number : 0123456789
- special char : ,;:!?./*%^$&"'(-_)=+~#{[|`\^@]}
An example is available in test/test-password