• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
puttnam
活着只为了生活。编程只为了挣钱。
博客园    首页    新随笔    联系   管理    订阅  订阅

字符串加密解密类

using System;
using System.Collections.Generic;
using System.Text;

namespace EnCode
{
    /// <summary>
    /// 字符串加密类
    /// </summary>
    public static class Encrypt
    {
        private const string mstr = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";

        /// <summary>
        /// 字符串加密
        /// </summary>
        /// <param name="str">待加密的字符串</param>
        /// <returns>加密后的字符串</returns>
        public static string EnCode(string str)
        {
            if (string.IsNullOrEmpty(str))
            {
                return "";
            }

            byte[] buff = Encoding.Default.GetBytes(str);
            int j, k, m;
            int len=mstr.Length;
            StringBuilder sb = new StringBuilder();
            Random r = new Random();

            for (int i = 0; i < buff.Length; i++)
            {               
                j = (byte)r.Next(6);
                buff[i] = (byte)((int)buff[i] ^ j);
                k = (int)buff[i] % len;
                m = (int)buff[i] / len;
                m = m * 8 + j;
                sb.Append(mstr.Substring(k, 1) + mstr.Substring(m, 1));
            }

            return sb.ToString();
        }

        /// <summary>
        /// 字符串解密
        /// </summary>
        /// <param name="str">待解密的字符串</param>
        /// <returns>解密后的字符串</returns>
        public static string DeCode(string str)
        {
            if (string.IsNullOrEmpty(str))
            {
                return "";
            }

            try
            {
                int j, k, m, n = 0;
                int len = mstr.Length;
                byte[] buff = new byte[str.Length / 2];

                for (int i = 0; i < str.Length; i += 2)
                {
                    k = mstr.IndexOf(str[i]);
                    m = mstr.IndexOf(str[i + 1]);
                    j = m / 8;
                    m = m - j * 8;
                    buff[n] = (byte)(j * len + k);
                    buff[n] = (byte)((int)buff[n] ^ m);
                    n++;
                }
                return Encoding.Default.GetString(buff);
            }
            catch
            {
                return "";
            }
        }

    }
}

posted @ 2009-04-14 23:03  soring  阅读(269)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2026
浙公网安备 33010602011771号 浙ICP备2021040463号-3