PasswordGeneratorGeneratePassword(Int32, Int32) Method
Generates a password with length between the given
minLength and maxLength.
Namespace: Gemstone.Security.CryptographyAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.150 -- Release Build+64e3b411e1abfbd2d4d8a81e850c3909a0ce8731
public string GeneratePassword(
int minLength,
int maxLength
)
Public Function GeneratePassword (
minLength As Integer,
maxLength As Integer
) As String
public:
String^ GeneratePassword(
int minLength,
int maxLength
)
function GeneratePassword(minLength, maxLength);
- minLength Int32
- The minimum length of the generated password.
- maxLength Int32
- The maximum length of the generated password.
StringA randomly generated password.