标题:.NET框架下测试MD5加密出了问题
取消只看楼主
wangguan0411
Rank: 1
等 级:新手上路
帖 子:20
专家分:0
注 册:2007-9-17
 问题点数:0 回复次数:0 
.NET框架下测试MD5加密出了问题

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Security.Cryptography;

namespace MD5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
static string MD5Create(string str)
{
string cl = str;
string pwd = "";
MD5 md5 = MD5.Create();//实例化一个md5对像
// 加密后是一个字节类型的数组,这里要注意编码UTF8/Unicode等的选择 
byte[] s = md5.ComputeHash(Encoding.UTF8.GetBytes(cl));
// 通过使用循环,将字节类型的数组转换为字符串,此字符串是常规字符格式化所得
for (int i = 0; i < s.Length; i++)
{
// 将得到的字符串使用十六进制类型格式。格式后的字符是小写的字母,如果使用大写(X)则格式后的字符是大写字符 bitsCN_com

pwd = pwd + s[i].ToString("X");

}
return pwd;
}


private void button1_Click(object sender, EventArgs e)
{
this.textBox2.Text = MD5Create(this.textBox1.Text.ToString().Trim());
}
}
}
这个是DM5加密测试,有点2个错误错误
1 “MD5”是“命名空间”,但此处被当做“类型”来使用 错误
2 命名空间“MD5”中不存在类型或命名空间名称“Create”(是缺少程序集引用吗?)
请指教,谢谢

搜索更多相关主题的帖子: NET 框架 
2007-10-13 14:54



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-177289-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.049121 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved