
[15]字符串加密类
文章平均质量分 71
xbf321
这个作者很懒,什么都没留下…
展开
-
对字符串进行SHA1和DES(加密,解密),加密和解密的类
using System;using System.Text;using System.IO;using System.Security.Cryptography;namespace StringSecurity{ /// /// 字符串加密解密类。 /// public sealed class StringSecurity { private原创 2007-03-13 11:24:00 · 4089 阅读 · 0 评论 -
又一种对字符串加密的函数
#region 对字符串的加密/解密 /// /// 对字符串进行适应 ServU 的 MD5 加密 /// /// /// public static string strServUPWD(string str) { string strResult = "";原创 2007-04-09 11:32:00 · 996 阅读 · 0 评论 -
密码加密类(PermissionBase)
using System;using System.Text;using System.IO;using System.Security.Cryptography;/// /// 字符串加密解密类。/// public sealed class StringSecurity{ private StringSecurity() { } #region SHA1 加密 ///原创 2007-04-30 10:51:00 · 882 阅读 · 0 评论