在c中将符号转换为小写字母

时间:2015-11-15 11:30:22

标签: c

我正在编写一个使用xor对文件进行编码的程序,并将加密的文本打印到另一个文件中。它在技术上有效,但输出包含几个符号而不是只包含小写字符。我如何告诉程序只打印小写字母,并能够将其解码回来?

#include <stdio.h>
#include <stdlib.h>
#include <string.h>




int main(int argc, char *args[]){
  FILE *inFile, *outFile, *keyFile;
  int key_count = 0;
  int encrypt_byte;
  char key[1000];

  inFile = fopen("input.txt", "r"); 
  outFile = fopen("output.txt", "w"); 
  keyFile = fopen("key.txt", "r");




  while((encrypt_byte = fgetc(inFile)) !=EOF)
    {
      fputc(encrypt_byte ^ key[key_count], outFile); //XORs
      key_count++;
      if(key_count == strlen(key)) //Reset the counter
     key_count = 0;
    }
        printf("Complete!");

    fclose(inFile);
    fclose(outFile);
    fclose(keyFile);
    return(0);  
}

以下是我得到的输出:

ÕââÐå朶è”ó

我只想让它只使用小写字母

2 个答案:

答案 0 :(得分:1)

你做不到。您要么对文件的所有数据进行异或,要么不要。 XOR-ing将导致不可打印的字符。

你能做什么,首先是异或,然后将其编码为base64。

要获取原始文本/数据,请执行相反的操作。

另见How do I base64 encode (decode) in C?

答案 1 :(得分:-3)

使用函数tolower() 这里有一个例子:

#include<stdio.h>
#include<ctype.h>

int main()
{
    int counter=0;
    char mychar;
    char str[]="TeSt THis seNTeNce.\n";

    while (str[counter])
    {
        mychar=str[counter];
        putchar (tolower(mychar));
        counter++;
    }
    return 0;
}