/random-string

Golang lib to generate a random string efficiently, with specified length / chars

Primary LanguageGoCreative Commons Zero v1.0 UniversalCC0-1.0

random-string

Go Reference

Golang lib to generate a random string efficiently, with specified length / chars

Installation

import "github.com/thewolfnl/random-string"

Functions

func New

func New() string

New returns a new random string of the standard length, consisting of standard characters.

func NewLen

func NewLen(length int) string

NewLen returns a new random string of the provided length, consisting of standard characters.

func NewLenChars

func NewLenChars(length int, chars string) string

NewLenChars returns a new random string of the provided length, consisting of the provided string of allowed characters (maximum 63).

sources

based off of: