This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / Anybody has experience to do Password encryption in .net? how do you implement it? thanks. I didn;t find any classes in .net namespaces yet.
-ningxin0809(雁影行洲);
2003-11-26
(#1485491@0)
-
我用过, 肯定有, 可是不记得了,现在我在98中没法用。NET。
-henhen(哼哼, 找工ing ^_^);
2003-11-26
(#1485497@0)
-
你竟然懂了她在问什么?
-win(秋天的菠菜);
2003-11-26
(#1485523@0)
-
既然有人问了,我也问一下:.net compact framework里有什么加密类么?我用.net写pocketpc程序,很多类或者方法被filter了,痛苦。
-jqian(Q_Q);
2003-12-1
(#1493579@0)
-
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformstextboxclasspasswordchartopic.asp
-henhen(哼哼, 找工ing ^_^);
2003-11-26
(#1485500@0)
-
thanks
-ningxin0809(雁影行洲);
2003-11-26
(#1485516@0)
-
You are welcome.
-henhen(哼哼, 找工ing ^_^);
2003-11-26
(#1485517@0)
-
我前些日子那道题的答案你看了么?长知识呀
-vega_lee(天津の包子.NET);
2003-11-26
(#1485661@0)
-
没看到, 前些时没精神, 不太上网, 顶出来给偶看看,行不? 谢先。
-henhen(哼哼, 找工ing ^_^);
2003-11-28
(#1489470@0)
-
哎呀,才看到,不知道现在顶出来你什么时候再上还能不能在。#1477433
-vega_lee(天津の包子.NET);
2003-11-28
(#1489666@0)
-
在顶一次
-vega_lee(天津の包子.NET);
2003-12-1
(#1493177@0)
-
Thanks. I just came. :-)
-henhen(哼哼, 找工ing ^_^);
2003-12-1
(#1493179@0)
-
单向加密、可逆加密、对称加密、非对称加密。。。。。
-hardywang(Hardy);
2003-11-26
(#1485554@0)
-
I use Rijndael to encryt the Credit card number. .NET framework provided the class for symmetric/asymmetric encrption algorithm
-miketany(MIKE老狼);
2003-11-26
(#1485621@0)
-
System.Security.Cryptography. but I didn;t find and sample codes. do you have some links?
-ningxin0809(雁影行洲);
2003-11-26
(#1485625@0)
-
,
-win(秋天的菠菜);
2003-11-26
(#1485631@0)
-
thanks.
-ningxin0809(雁影行洲);
2003-11-26
(#1485643@0)
-
You got to decide the algorithm you want to use. You can find tons of sample code on google. No idea of your situation, so I can not give you more suggestions
-miketany(MIKE老狼);
2003-11-26
(#1485649@0)
-
got it, thanks
-ningxin0809(雁影行洲);
2003-11-26
(#1485770@0)
-
In terms of password encryption, I think unix's crypt() (supporting des, md5, blowfish) is more suitable. Here's a version of md5crypt written in java, shouldn't be too hard to port to .NET.
-dennis2(Dennis);
2003-11-26
(#1485976@0)