码迷,mamicode.com
首页 > Windows程序 > 详细

C# ascii加密和解密

时间:2016-11-24 06:34:30      阅读:366      评论:0      收藏:0      [点我收藏+]

标签:16进制   oba   ram   orm   class   turn   bsp   char   har   

技术分享

 

/// <summary>
        /// ascii加密
        /// </summary>
        /// <param name="text"></param>
        /// <returns></returns>
        private string AsciiEncryption(string text, string parameter)
        {
            StringBuilder sb = new StringBuilder();
            foreach (char c in text)
            {
                // Get the integral value of the character. 
                int value = Convert.ToInt32(c);
                // Convert the decimal value to a hexadecimal value in string form. 
                int temp = Int32.Parse(parameter, System.Globalization.NumberStyles.HexNumber);    //16进制转10进制 差值
                string hexOutput = String.Format("{0:X}", value + temp);   //16进制数据   16进制加30   10进制加48
                sb.Append(hexOutput);
            }
            return sb.ToString();
        }

 

/// <summary>
        /// Ascii解密
        /// </summary>
        /// <param name="text"></param>
        /// <returns></returns>
        private string AsciiDecryption(string text)
        {
            int temp = Int32.Parse("30", System.Globalization.NumberStyles.HexNumber);    //16进制转10进制 差值
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < text.Length; i += 2)
            {
                string str = text.Substring(i, 2);  //16进制
                int x10 = Int32.Parse(str, System.Globalization.NumberStyles.HexNumber);    //16进制转10进制
                //ToString("x8") 10进制转16进制
                string result = ((char)int.Parse((x10 - temp).ToString("x8"), System.Globalization.NumberStyles.HexNumber)).ToString();
                sb.Append(result);
            }
            return sb.ToString();
        }

 

C# ascii加密和解密

标签:16进制   oba   ram   orm   class   turn   bsp   char   har   

原文地址:http://www.cnblogs.com/testsec/p/6095925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!