首页 > 编程 > C# > 正文

C#最简单的字符串加密解密方法

2020-01-24 01:52:34
字体:
来源:转载
供稿:网友
public static string encode(string str)    {      string htext = "";       for (int i = 0; i < str.Length; i++)      {        htext = htext + (char)(str[i] + 10 - 1 * 2);      }      return htext;    }     public static string decode(string str)    {      string dtext = "";       for (int i = 0; i < str.Length; i++)      {        dtext = dtext + (char)(str[i] - 10 + 1 * 2);      }      return dtext;    }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表