Files
golib/password
Nicolas JUHEL 8516f33fe0 # Fix Race detection
- logger
- password

# Fix Archive :
- create archive : add params to clean prefix path from contents path

# Fix Nutsdb :
- fix client command detection
- add test for unknown command before parsing
- fix snapshoot process for cluster
2021-04-15 15:42:49 +02:00
..
2021-04-15 15:42:49 +02:00
2020-07-14 13:28:48 +02:00

Password pakcage

Help generate random string usable in password....

Example of implement

In your file, import this lib :

import "github.com/nabbar/golib/password"
// 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