Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Uppercase = []rune("ABCDEFGHIJKLMNOPQRSTUVWXYZ") Lowercase = []rune("abcdefghijklmnopqrstuvwxyz") Numbers = []rune("0123456789") Alphanumeric = []rune(string(Uppercase) + string(Lowercase) + string(Numbers)) CCM = []rune(string(Alphanumeric) + "_-~") )
Common values to be used when creating random strings
Functions ¶
func RandomNRunes ¶
RandomNRunes generates a string by choosing N runes at random from the runes list provided
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.