だから私はCでファイル暗号化プログラムを作成しようとしています(ちなみに私はCに慣れていません)ので、この単純なXORファイル暗号化コードを書きました:
#include <stdio.h>
#include <string.h>
int main()
{
char fileName1[35] = {'\0'}; //Name of original file
char fileName2[35] = {'\0'}; //Name of encrypted file
char keyString[20] = {'\0'}; //Key determines result encryption
FILE* originalFile; //File to be encrypted
FILE* cryptedFile; //The encrypted file
int c; //byte read from original file
printf("Enter file location followed by name of the file you want to encrypt: ");
scanf("%s", fileName1);
printf("Enter file location followed by name of the encrypted file: ");
scanf("%s", fileName2);
printf("Enter your key (Encryption changes based on Key): ");
scanf("%s", keyString);
originalFile = fopen(fileName1, "rb"); //rb to read file bytes
cryptedFile = fopen(fileName2, "wb"); //wb to write bytes to file
if(originalFile != NULL && cryptedFile != NULL){
while( (c = getc(originalFile)) != EOF ){
int x;
for(x=0; x<strlen(keyString); x++){
c ^= keyString[x];
putc(c, cryptedFile);
}
}
fclose(originalFile);
fclose(cryptedFile);
}
return 0;
}
そこで、このプログラムをテストするために、file1.txt というファイルを作成し、暗号化プログラムを実行して、2 番目のファイルを file2.txt として、キーをsecretとして指定しました。次に、プログラムを再度実行しましたが、今回は暗号化された file2.txt に対して実行し、同じキーsecretで file3.txt を作成しました。同じキーだったので、file3.txt は file1.txt と同じはずですが、file3.txt にはランダムな内容が含まれています。それで、私は何を間違っていますか?