异或运算加密与解密练习

根据 a=b^c 相互关系。 #include <stdio.h> #include <stdlib.h> #include <string.h> int main() { int i,j,len,len_one; char one[10000],two[10000];//one[]为密钥,two[]为明文 printf("请输入明文:"); gets(two); printf("请输入密钥:"); gets(one); len_one=strlen(one); len=strlen(two); f...
学习档案 | 2013-09-19 18:40 | 阅读 2371 次 | 评论 0 条
浏览231942次
最新评论