1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
//Program to Read a users file and print to the screen and then encrypt the file.
#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
void shiftArray(char* arrayIn,int key);
void main()
{
//Stating variables.
FILE *file_in;
FILE *file_out;
char sentence[100];
char fname[50];
int key;
int inLength; // ADDED
char cipher [26] = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
// char *offset ; **not used
// char *encrypt;
// offset + cipher = encrypt; **unsure what you were doing here
//asking user for file name.
printf("please enter the file which you would like to open and encrypt\n");
//scanning users input for the file name.
scanf( "%s", fname);
//opening file and getting each character from the text file.
file_in = fopen(fname, "r");
int i=0;
//while statement to read character by character.
while (!feof(file_in))
{
fscanf(file_in,"%c",&sentence[i]);
i++;
}
sentence[i] = 0x00;
inLength = i;
//printing each character to the screen, one at a time.s
printf("%s\n", sentence);
//if the end of file is reached a message is entered.
if (feof(file_in))
printf("We have reached end-of-file\n");
//asking user for file name.
printf("please enter the file which you would like to write to and encrypt\n");
//scanning users input.
scanf( "%s", fname);
file_out = fopen(fname, "w");
printf("please enter the offset key");
scanf("%d", &key);
while (key < 1 && key > 25)
{
printf("please enter a valid key");
scanf("%d", &key);
}
shiftArray(cipher,key);
printf( "encryption will now begin");
//printf("%s", offset); not needed
int tempPos = 0;
for (int i=0;i<inLength;i++)
{
if (sentence[i] == ' ')
{
fprintf(file_out,"%c",' ');
continue;
}
sentence[i] = tolower(sentence[i]);
tempPos = sentence[i] - 0x61;
fprintf(file_out,"%c",cipher[tempPos]);
}
//close the file
fclose(file_out);
//closes the open file.
fclose (file_in);
}
void shiftArray(char* arrayIn,int key)
{
char tempArray[26];
for (int i=key,j=0;i<26;i++,j++)
{
tempArray[j] = arrayIn[i];
}
for (int i=0,j=26-key;i<key;i++,j++)
{
tempArray[j] = arrayIn[i];
}
for (int i=0;i<26;i++)
{
arrayIn[i] = tempArray[i];
}
}
|