王骏的BLOG
编程、网络技术点滴...
<
2006年10月
>
日
一
二
三
四
五
六
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
公告
留言簿(24)
给我留言
查看公开留言
查看私人留言
随笔分类
数据库 (3)
(rss)
C++,VC (11)
(rss)
.NET (14)
(rss)
烂笔头备忘录 (11)
(rss)
Web开发 (6)
(rss)
网络管理 (5)
(rss)
疑难杂症备忘 (9)
(rss)
随笔档案
2008年11月 (1)
2008年10月 (2)
2008年8月 (1)
2008年6月 (1)
2008年5月 (1)
2008年4月 (1)
2008年3月 (3)
2008年2月 (1)
2008年1月 (3)
2007年12月 (5)
2007年11月 (2)
2007年6月 (1)
2007年2月 (2)
2007年1月 (1)
2006年10月 (3)
2006年8月 (1)
2006年2月 (3)
2006年1月 (1)
2005年12月 (2)
2005年11月 (5)
2005年10月 (3)
2005年9月 (1)
2005年7月 (3)
2005年6月 (2)
2005年5月 (4)
2005年3月 (2)
2005年2月 (3)
2004年5月 (2)
2004年4月 (1)
文章分类
WEB开发 (2)
(rss)
网络技术 (3)
(rss)
文章档案
2006年11月 (1)
2005年11月 (1)
2005年4月 (1)
2004年10月 (1)
2004年9月 (1)
相册
程序员娱乐 (2)
WEB开发
在线CSS词典
相关链接
VC知识库博客园地
(rss)
VC知识库首页
宝宝的主页
搜索
最新评论
1. re: ASP.NET大文件上传
为什么
buff = _request.GetPreloadedEntityBody();为NULL啊?
--路过
2. re: URL编解码(URLEncode,URLDecode)
多谢多谢!!!!
--KEN
3. re: IE无法打印一例
早上遇到有人的IE7(vista sp1)无法打印,他的临时文件在D盘,打印时说找不到文件。
解决办法:找到D盘上的临时文件夹,赋上对应的权限即可.
heron.96 AT Gm ail dot com
--VISTA
4. 中国美甲技术
[url=
http://www.coolestgirl.com.cn
]美甲[/url] 美甲
--零花钱
5. re: string与线程安全
--http://www.axdat.com
6. re: Sasser(震荡波)蠕虫病毒肆虐
不错不错,学习了。
--硬盘数据恢复
7. re: ASP.NET大文件上传
蛮热闹的嘛。..我也来踩踩
--上海国珍松花粉
8. re: ASP.NET大文件上传
支持一下,祝楼主越办越好!
--raid服务器数据恢复
9. re: .Text 使用经验:dotText的编译
好帖子,收藏了。
--硬盘数据恢复
10. re: URL编解码(URLEncode,URLDecode)
哈,太好了,正找真呢,谢谢。
--数据恢复
阅读排行榜
1. .Text 使用经验:dotText的编译(11747)
2. ASP.NET大文件上传(10222)
3. 利用Visual Assist X的模板功能提高编辑效率(7412)
4. IE无法打印一例(6082)
5. [烂笔头备忘录] 删除list元素(4185)
6. string与线程安全(4036)
7. Sasser(震荡波)蠕虫病毒肆虐(4023)
8. [HTTP 500 - 内部主机错误]的处理(3943)
9. 双SCSI硬盘安装小结(3487)
10. 将VC知识库.Text Blog 从.95升级到.96(3128)
评论排行榜
1. ASP.NET大文件上传(57)
2. Sasser(震荡波)蠕虫病毒肆虐(48)
3. string与线程安全(21)
4. IE无法打印一例(17)
5. .Text 使用经验:dotText的编译(16)
6. .NET中的3DES加密 (13)
7. 传奇游戏服务器源码学习(13)
8. 将VC知识库.Text Blog 从.95升级到.96(11)
9. XMLHTTP与客户端无刷新更新数据(11)
10. [烂笔头备忘录] 删除list元素(10)
VC知识库BLOG
首页
新随笔
联系
聚合
登录
随笔-61 文章-5 评论-247 Trackbacks-0
.NET中的3DES加密
本随笔来源于网络。
如果编码有问题,可以尝试
Encoding.GetEncoding("gb2312")
using System.Text;
using System.Security.Cryptography;
public
static
string
DES3Encrypt(
string
strString,
string
strKey)
{
TripleDESCryptoServiceProvider DES
=
new
TripleDESCryptoServiceProvider();
MD5CryptoServiceProvider hashMD5
=
new
MD5CryptoServiceProvider();
DES.Key
=
hashMD5.ComputeHash(Encoding.Default.GetBytes(strKey));
DES.Mode
=
CipherMode.ECB;
ICryptoTransform DESEncrypt
=
DES.CreateEncryptor();
byte
[] Buffer
=
Encoding.Default.GetBytes(strString);
return
Convert.ToBase64String(DESEncrypt.TransformFinalBlock(Buffer,
0
, Buffer.Length));
}
public
static
string
DES3Decrypt(
string
strString,
string
strKey)
{
TripleDESCryptoServiceProvider DES
=
new
TripleDESCryptoServiceProvider();
MD5CryptoServiceProvider hashMD5
=
new
MD5CryptoServiceProvider();
DES.Key
=
hashMD5.ComputeHash(Encoding.Default.GetBytes(strKey));
DES.Mode
=
CipherMode.ECB;
ICryptoTransform DESDecrypt
=
DES.CreateDecryptor();
string
result
=
""
;
try
{
byte
[] Buffer
=
Convert.FromBase64String(strString);
result
=
Encoding.Default.GetString(DESDecrypt.TransformFinalBlock(Buffer,
0
, Buffer.Length));
}
catch
(System.Exception e)
{
throw
(
new
System.Exception(
"
null
"
, e)) ;
}
return
result ;
}
posted on 2006-10-18 19:15 王骏的BLOG 阅读(1588)
评论(13)
编辑
收藏
Comments
#
re: .NET中的3DES加密
bvcb
Posted @ 2008-01-18 11:28
[URL=
http://www.zyydjx.com/about.htm
]制袋机[/URL] [URL=
http://www.hu-song.cn/eKultur.htm
">
http://www.hu-song.cn/eKultur.htm
]die cutting machine[/URL] [URL=
http://www.hu-song.cn/eKultur.htm
">
http://www.hu-song.cn/eKultur.htm
]auto slitting machine[/URL] [URL=
http://www.hu-song.cn/eabout.htm
]flexo printing machine[/URL] [URL=
http://www.cnxinye.com
]bag-making machine[/URL] [url=
http://www.cnxinda.cn
]制袋机[/url] [url=
http://www.cnxinda.cn
/lianx.htm]吹膜机[/url] [url=
http://www.chuangsj.com/myshow.asp
]GOOGLE排名[/url] [url=
http://www.zjbeiyin.com
]压痕机[/url][url=
http://www.gxysjx.com
">
http://www.gxysjx.com
]印刷机[/url] [url=
http://www.gxysjx.com
">
http://www.gxysjx.com
]吹膜机[/url] [url=
http://www.65137889.com
">
http://www.65137889.com
]印刷机械[/url] [url=
http://www.65137889.com
">
http://www.65137889.com
]凹版印刷机[/url] [url=
http://www.dong-hai.net
]印刷机[/url]
#
re: .NET中的3DES加密
bvcb
Posted @ 2008-01-18 11:28
[url=
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
]丝印机[/url] [url=
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
]丝网印刷机[/url] [url=
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
]全动丝印机[/url] [url=
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
/101.asp]网印机[/url] [url=
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
/101.asp]晒版机[/url] [url=
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
/101.asp]拉网机[/url] [url=
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
/202.asp]UV光固机[/url] [url=
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
/202.asp]光固机[/url] [url=
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
">
http://www.lgxinfeng.com
/202.asp]胶印光固机[/url] [URL=
http://www.zyydjx.com
">
http://www.zyydjx.com
]吹膜机[/URL] [URL=
http://www.zyydjx.com
">
http://www.zyydjx.com
]制袋机[/URL]
#
re: .NET中的3DES加密
bvcb
Posted @ 2008-01-18 11:29
<a href="
http://www.lgxinfeng.com">丝印机</a>
<a href="
http://www.lgxinfeng.com">丝网印刷机</a>
<a href="
http://www.lgxinfeng.com">全动丝印机</a>
<a href="
http://www.lgxinfeng.com/101.asp">网印机</a>
<a href="
http://www.lgxinfeng.com/101.asp">晒版机</a>
<a href="
http://www.lgxinfeng.com/101.asp">拉网机</a>
<a href="
http://www.lgxinfeng.com/202.asp">UV光固机</a>
<a href="
http://www.lgxinfeng.com/202.asp">光固机</a>
<a href="
http://www.lgxinfeng.com/202.asp">胶印光固机</a>
<a href="
http://www.zyydjx.com">吹膜机</a>
<a href="
http://www.zyydjx.com">制袋机</a>
<a href="
http://www.zyydjx.com/about.htm">制袋机</a>
#
re: .NET中的3DES加密
bvcb
Posted @ 2008-01-18 11:30
<a href="
http://www.hu-song.cn/eabout.htm">label
printing machine</a> <a href="
http://www.hu-song.cn/eabout.htm">flexo
printing machine</a> <a href="
http://www.hu-song.cn/eKultur.htm">auto
slitting machine</a> <a href="
http://www.cnxinye.com">bag-making
machine</a> <a href="
http://www.hu-song.cn/eKultur.htm">die
cutting machine</a> <a href="
http://www.cnxinda.cn">制袋机</a>
<a href="
http://www.cnxinda.cn/lianx.htm">吹膜机</a><a
href="
http://www.chuangsj.com/myshow.asp">GOOGLE排名</a>
<a href="
http://www.zjbeiyin.com">压痕机</a>
<a href="
http://www.gxysjx.com">印刷机</a>
<a href="
http://www.gxysjx.com">吹膜机</a>
<a href="
http://www.65137889.com">印刷机械</a>
<a href="
http://www.65137889.com">凹版印刷机</a>
<a href="
http://www.dong-hai.net">印刷机</a>
#
re: .NET中的3DES加密
234234
Posted @ 2008-07-23 17:44
[url=
http://www.aminweddingdress.com/index01.htm
]wedding dress[/url]
[url=
http://www.aminweddingdress.com/index02.htm
">
http://www.aminweddingdress.com/index02.htm
]wedding gown[/url]
[url=
http://www.aminweddingdress.com/index02.htm
">
http://www.aminweddingdress.com/index02.htm
]bridal gown[/url]
[url=
http://www.bhbzjx.cn/eproduct.html
]Bag making Machine[/url]
[url=
http://www.guowang.com/en/eabout.html
]paper cutting machine[/url]
#
re: .NET中的3DES加密
234234
Posted @ 2008-07-23 17:45
[url=
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
]massage shanghai[/url]
[url=
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
]shanghai massage[/url]
[url=
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
]shanghai escort[/url]
[url=
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
">
http://www.beautyescort.com.cn
]massage in shanghai[/url]
[url=
http://www.0577xm.com
">
http://www.0577xm.com
]瑞安货运[/url][url=
http://www.0577xm.com
">
http://www.0577xm.com
]瑞安物流[/url]
[url=
http://www.tglaser.net/index01.html
]激光焊接机[/url]
#
re: .NET中的3DES加密
234234
Posted @ 2008-07-23 17:45
[url=
http://www.fushi8.net.cn
]制袋机[/url]
[url=
http://www.577qs.cn
]制袋机[/url]
[url=
http://http://www.printyoung.com/diecuttingmachine.html
]die cutting machine[/url]
[url=
http://www.printyoung.com/boxsamplemachine.html
]box sample machine[/url]
[url=
http://www.printyoung.com/envelopemachine.html
]envelope machine[/url]
[url=
http://www.printyoung.com/foldergluer.html
]folder gluer[/url]
#
re: .NET中的3DES加密
234234
Posted @ 2008-07-23 17:45
[url=
http://www.printyoung.com/flexoprintingmachine.html
]flexo printing machine[/url]
[url=
http://www.printyoung.com/corrugatedmachine.html
]corrugated machine[/url]
[url=
http://www.0898hnly.com/about.html
">
http://www.0898hnly.com/about.html
]三亚旅游[/url]
[url=
http://www.0898hnly.com/about.html
">
http://www.0898hnly.com/about.html
]海南旅行社[/url]
[url=
http://www.0898hnly.com/hnly.html
]海南旅游[/url]
#
re: .NET中的3DES加密
234234
Posted @ 2008-07-23 17:45
[url=
http://www.0898hnly.com/hnly.html
">
http://www.0898hnly.com/hnly.html
]海南旅游公司[/url]
[url=
http://www.0898hnly.com/hnly.html
">
http://www.0898hnly.com/hnly.html
]海南旅游线路[/url]
[url=
http://www.0898hnly.com/hndly.html
]海南岛旅游[/url]
[url=
http://www.0898hnly.com/about.html
">
http://www.0898hnly.com/about.html
]海南中青旅[/url]
[url=
http://www.0898hnly.com/about.html
">
http://www.0898hnly.com/about.html
]海南中国青年旅行社[/url]
#
re: .NET中的3DES加密
234234
Posted @ 2008-07-23 17:46
[url=
http://www.0898hnly.com/hndly.html
]海南参团旅游[/url]
[url=
http://www.sh28.com.cn
">
http://www.sh28.com.cn
]上海搬家[/url]
[url=
http://www.sh28.com.cn
">
http://www.sh28.com.cn
]上海搬家公司[/url]
[url=
http://www.sh28.com.cn
">
http://www.sh28.com.cn
/about.htm]上海搬场[/url]
[url=
http://www.sh28.com.cn
">
http://www.sh28.com.cn
/about.htm]上海搬场公司[/url]
#
re: .NET中的3DES加密
234234
Posted @ 2008-07-23 17:46
[url=
http://www.sh28.com.cn/about.htm
">
http://www.sh28.com.cn/about.htm
]上海大众搬场公司[/url]
[url=
http://www.sh28.com.cn/about.htm
">
http://www.sh28.com.cn/about.htm
]上海大众搬场[/url]
[url=
http://www.nbuico.cn/aboutus.htm
">
http://www.nbuico.cn/aboutus.htm
">
http://www.nbuico.cn/aboutus.htm
">
http://www.nbuico.cn/aboutus.htm
]烘箱[/url]
[url=
http://www.nbuico.cn/aboutus.htm
">
http://www.nbuico.cn/aboutus.htm
">
http://www.nbuico.cn/aboutus.htm
">
http://www.nbuico.cn/aboutus.htm
]固化炉[/url]
[url=
http://www.nbuico.cn/aboutus.htm
">
http://www.nbuico.cn/aboutus.htm
">
http://www.nbuico.cn/aboutus.htm
">
http://www.nbuico.cn/aboutus.htm
]烘道[/url]
[url=
http://www.cnyouxiang.com/ypsjhf.html
]硬盘数据恢复[/url]
#
re: .NET中的3DES加密
234234
Posted @ 2008-07-23 17:46
[url=
http://www.cnyouxiang.com/ypsjhf.html
]杭州数据恢复[/url]
[url=
http://www.cnyouxiang.com/indexa.html
]杭州电脑维修[/url]
[url=
http://www.cnxskj.com.cn
">
http://www.cnxskj.com.cn
">
http://www.cnxskj.com.cn
">
http://www.cnxskj.com.cn
]钢塑管[/url]
[url=
http://www.cnxskj.com.cn
">
http://www.cnxskj.com.cn
">
http://www.cnxskj.com.cn
">
http://www.cnxskj.com.cn
]pvc管[/url]
[url=
http://www.cnxskj.com.cn
">
http://www.cnxskj.com.cn
">
http://www.cnxskj.com.cn
">
http://www.cnxskj.com.cn
]ppr管[/url]
#
re: .NET中的3DES加密
234234
Posted @ 2008-07-23 17:46
[url=
http://www.jinyuanchina.cn/about.htm
]夹链贴合制袋机[/url]
[url=
http://www.cldhj.com/about.html
]对焊机[/url]
<A href="
http://www.baosheng888.com.cn/about.html">灌浆料</A>
<A href="
http://www.jinyuanchina.cn/about.htm
">夹链贴合制袋机</a>
<A href="
http://www.printyoung.com/diecuttingmachine.html">die
cutting machine</A>
标题
姓名
主页
验证码
*
内容
Remember Me?
登录
使用高级评论
Top
[使用Ctrl+Enter键可以直接提交]