Skip to content

C# Static library for generating random passwords within your project. For example generating a temporary password for a user who forgot their password or email to a newly registered user to confirm their email at the same time. Random Password Generator

License

Notifications You must be signed in to change notification settings

nparadis/password-generator-library

Repository files navigation

password-generator-library

C# Static library for creating passwords within your project.

For example generating a temporary password for a user who forgot their password or email to a newly registered user to confirm their email at the same time.

Static class with static methods

Namespace : RandomPasswordGenerator

Class Name : Password Generator

Methods :

public static string GeneratePassword(int numberOfAlphabetical, int numberOfNumerical, int numberOfSpecialCharacters)

public static string GenerateStandardEightCharacterPassword()

public static string GenerateStandardTwelveCharacterPassword()

public static ICollection<string> GenerateXNumberOfPasswords(int numberOfPasswords, int numberOfAlphabetical, int numberOfNumerical, int numberOfSpecialCharacters)

public static string GenerateStandardPasswordPhrase()

public static string GenerateStandardPasswordPhraseWithThreeLetterWords()

public static string GenerateStandardPasswordPhraseWithFourLetterWords()

public static string GenerateStandardPasswordPhraseWithFiveLetterWords()

public static string GeneratePasswordPhraseWithSpecialCharacterSeparator(string separator)

public static string GeneratePasswordPhraseWithRandomSpecialCharacterSeparator()

public static ICollection<string> GenerateXNumberOfStandardPasswordPhrases(int numberOfPasswordPhrasesRequested, SizeOfWords wordSize)

About

C# Static library for generating random passwords within your project. For example generating a temporary password for a user who forgot their password or email to a newly registered user to confirm their email at the same time. Random Password Generator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages