asp.net otomatik şifre oluşturmak için oldukca harika bir kod blogu parametre olarak
kaç harfli bir şifre oluşturacağınızı söylemeniz yeterli.
Guid ile mükemmel şifreler oluşturup "-" işaretini silip istediğiniz kadar uzunlukta değeri
string ifadeden kesip size geri döndürüyor.
public string GetRandomPasswordUsingGUID(int length)
{
// Get the GUID
string guidResult = System.Guid.NewGuid().ToString();
// Remove the hyphens
guidResult = guidResult.Replace("-", string.Empty);
// Make sure length is valid
if (length <= 0 || length > guidResult.Length)
throw new ArgumentException("Length must be between 1 and " + guidResult.Length);
// Return the first length bytes
return guidResult.Substring(0, length);
}
Hiç yorum yok:
Yorum Gönder