Click or drag to resize

PasswordGeneratorGeneratePassword(Int32, Int32) Method

Generates a password with length between the given minLength and maxLength.

Namespace: GSF.Security.Cryptography
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public string GeneratePassword(
	int minLength,
	int maxLength
)
View Source

Parameters

minLength  Int32
The minimum length of the generated password.
maxLength  Int32
The maximum length of the generated password.

Return Value

String
A randomly generated password.
See Also