欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-07-01 16:54:51
public static string encode(string str) { string htext = "";...
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;
    }