Skip to content

A random string generator backed by .NET cryptographic library's Random Number Generator.

License

Notifications You must be signed in to change notification settings

YashojaLakmith/RandomStringGenerator

Repository files navigation

RandomStringGenerator

A simple .NET Standard 2.1 library for generating a random string from a given set of characters.

Usage

using RandomStringGenerator;

// Implicitely ignore duplicates in input character set.
string output1 = Generator.GenerateRandomString("somestring", 10)

// Explicitely allow duplicates in input character set.
string output2 = Generator.GenerateRandomString("somestring", 10, false)

About

A random string generator backed by .NET cryptographic library's Random Number Generator.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages