请教一个简单的c#字符串异或加密和解密的题

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespa... using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 简单加密算法
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入一个要加密的字符串");
string txt = Console.ReadLine();
int txt1 = 0;
int key = 81;
foreach (char t in txt)
{
txt1 += t ^ key;
}
Console.WriteLine("加密后的字符串是{0}",txt1);
Console.ReadKey();
}
}
}
我想问问解密该怎么写呢 ... 我给加上了 不会解了...
展开
 我来答
zou0702tao
2011-11-08 · 超过51用户采纳过TA的回答
知道小有建树答主
回答量:246
采纳率:0%
帮助的人:75.8万
展开全部
一样的,你把txt1再异或一下就回来了。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式