Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 540 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 540 Bytes

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