C#简单字符串加密解密 C#最简单的字符串加密解密方法
人气:0想了解C#最简单的字符串加密解密方法的相关内容吗,在本文为您仔细讲解C#简单字符串加密解密的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C#,简单,字符串,加密,解密,下面大家一起来学习吧。
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; }
加载全部内容