PasswordGeneratorGeneratePassword(Int32, Int32) Method

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

Definition

Namespace: Gemstone.Security.Cryptography
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.178 -- Release Build+f8a23028fef00502c7e35bcc3934c260e8a0eb56
public string GeneratePassword(
	int minLength,
	int maxLength
)

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