在 C# 中生成随机密码

Fil Zjazel Romaeus Villegas 2023年10月12日
在 C# 中生成随机密码

本教程将演示如何使用 System.Web.Security 在 C# 中生成随机密码。

在 C# 中使用 System.Web.Security 方法生成随机密码

.NET 框架提供了一个函数,你可以使用它的函数 GeneratePasswords 生成你指定的任意长度的密码,并包含一定数量的非字母数字字符。要使用它,你必须首先确保已添加对 System.Web 的引用。要添加此引用,请按照以下步骤操作:

  • 导航到解决方案资源管理器
  • 右键单击引用
  • 点击添加引用
  • 单击左侧的 Assembilies 选项卡
  • 找到 System.Web.dll 文件并单击确定

成功添加引用后,你可以在代码中使用其 using 语句。

using System.Web.Security;

GeneratePassword 函数接受两个输入。第一个是要生成的密码所需的字符数。第二个输入是指所需的非字母数字字符的数量。然后将生成的密码作为字符串变量返回,然后你可以在代码中使用它。

例子:

using System;
using System.Web.Security;

namespace GeneratePassword_Example {
  class Program {
    static void Main(string[] args) {
      // Create a for loop to run the code 10 times
      for (int i = 0; i < 10; i++) {
        // Store the password generated into a string variable
        // The password will have a length of 8 characters and 3 non alphanumeric characters
        string generated_pass = Membership.GeneratePassword(8, 3);
        // Print the newly generated password to the console
        Console.WriteLine("Password " + (i + 1).ToString() + ": " + generated_pass);
      }

      Console.ReadLine();
    }
  }
}

在上面的示例中,我们在一个循环中运行了 10 次 GeneratePassword 函数,以演示生成的所有密码如何不同并满足输入参数设置的要求。

输出:

Password 1: *X!2OL%8
Password 2: _0=[qjFq
Password 3: &zGiOR=#
Password 4: *Is8&]2j
Password 5: Dv-${$Pt
Password 6: *Gkr-B4.
Password 7: )e==gu3O
Password 8: X$+LRe(e
Password 9: *2Y[.gpJ
Password 10: .W=y1zF&

相关文章 - Csharp Random