C语言 百分网手机站

C语言如何使用异或(xor)加密或解密文件

时间:2020-09-02 17:35:03 C语言 我要投稿

C语言如何使用异或(xor)加密或解密文件

  C语言使用异或(xor)函数可以加密或解密文件你知道吗?你知道C语言如何使用异或(xor)加密或解密文件吗?下面是小编为大家带来的关于C语言如何使用异或(xor)加密或解密文件的'知识,欢迎阅读。

  C语言如何使用异或(xor)加密或解密文件

  xor_encrypt.c

  /** XOR 加密/解密文件 */

  #define TRUE 1

  #define FALSE 0

  #include

  #include

  #include

  #include // 如果在/usr/include/找不到,可以在/usr/include/sys/复制过去

  // 输出信息

  void msg_log(char *str);

  // 判断文件是否存在

  int file_exists(char *filename);

  // 主函数

  //更多精彩内容:http://www.bianceng.cn/Programming/C/

  int main(int argc, char *argv[]){

  int keylen, index=0;

  char *source, *dest, *key, fBuffer[1], tBuffer[20], ckey;

  FILE *fSource, *fDest;

  source = argv[1]; // 原文件

  dest = argv[2]; // 目的文件

  key = argv[3]; // 加密字串

  // 检查参数

  if(source==NULL || dest==NULL || key==NULL){

  msg_log("param error usage:xor_encrypt source dest key e.g ./xor_encrypt o.txt d.txt 123456");

  exit(0);

  }

  // 判断原文件是否存在

  if(file_exists(source)==FALSE){

  sprintf(tBuffer,"%s not exists",source);

  msg_log(tBuffer);

  exit(0);

  }

  // 获取key长度

  keylen = strlen(key);

  fSource = fopen(source, "rb");

  fDest = fopen(dest, "wb");

  while(!feof(fSource)){

  fread(fBuffer, 1, 1, fSource); // 读取1字节

  if(!feof(fSource)){

  ckey = key[index%keylen]; // 循环获取key

  *fBuffer = *fBuffer ^ ckey; // xor encrypt

  fwrite(fBuffer, 1, 1, fDest); // 写入文件

  index ++;

  }

  }

  fclose(fSource);

  fclose(fDest);

  msg_log("success");

  exit(0);

  }

  //输出信息

  void msg_log(char *str){

  printf("%s ", str);

  }

  // 判断文件是否存在

  int file_exists(char *filename){

  return (access(filename, 0)==0);

  }

  这张图如果使用php来处理需要 2秒 左右,但用C处理只需要 130毫秒。

  fdipzone@ubuntu:~/C$ gcc -o xor_encrypt xor_encrypt.c

  fdipzone@ubuntu:~/C$ time ./xor_encrypt 1280.jpg 1280en.jpg '@#$%^&*()_DFGHJKadsklfjasdf'

  success

  real 0m0.139s

  user 0m0.060s

  sys 0m0.070s


【C语言如何使用异或(xor)加密或解密文件】相关文章:

c语言中逻辑或怎么用09-29

C语言EOF如何使用10-02

PHP如何使用AES加密算法进行数据加密和解密09-24

C语言文件操作函数09-25

如何使用C语言求N的阶乘09-25

C语言for循环的使用10-06

C语言typedef的使用10-04

PHP可逆加密解密算法09-26

C语言文件操作函数freopen详解11-20

怎么利用c语言创建excel文件10-07