如何在C#中生成MD5和并执行代码?
我是 C# 新手,只是想问一些问题。
我在 C# 中得到了一个 MD5 和,我应该将代码放在一个类中,但是我要从哪里调用这个方法代码呢? ASPX,还是什么?我记得那个类不能单独运行。
如何编写调用该方法的方法?
我要为其创建 MD5 的文件是一个文本文件。
这是我发现的:
public static string CalculateMD5Hash(string strInput)
{
MD5 md5 = System.Security.Cryptography.MD5.Create();
byte[] inputBytes = System.Text.Encoding.ASCII.GetBytes(strInput);
byte[] hash = md5.ComputeHash(inputBytes);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < hash.Length; i++)
{
sb.Append(hash[i].ToString("x2"));
}
return sb.ToString();
}
I am new to C# just want to ask some questions.
I got a MD5 sum in C#, I should put the code in a class, but where am I going to call this method code from? ASPX, or what?. I remember that class cannot run on its own.
How to write the method to call that?
The file that i want to create a MD5 has for is a text file.
This is what I have found:
public static string CalculateMD5Hash(string strInput)
{
MD5 md5 = System.Security.Cryptography.MD5.Create();
byte[] inputBytes = System.Text.Encoding.ASCII.GetBytes(strInput);
byte[] hash = md5.ComputeHash(inputBytes);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < hash.Length; i++)
{
sb.Append(hash[i].ToString("x2"));
}
return sb.ToString();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将此方法放入某个类中。例如,您可以创建一个包含以下内容的控制台应用程序:
现在可以将
CryptoUtils
类放置在单独的文件中。You need to put this method inside some class. For example you could create a console application with the following contents:
Now the
CryptoUtils
class could be placed in a separate file.