Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I have a file encrypted using Pseudo-random number generator: https://drive.google.com/open?id=1gZCujDYmEL-FZ5o_xBUS-Ng5979HSsZ7, and I know the plaintext probably starting with documentclass[12pt]{article} The code used for encryption was
I have a file encrypted using Pseudo-random number generator: https://drive.google.com/open?id=1gZCujDYmEL-FZ5o_xBUS-Ng5979HSsZ7, and I know the plaintext probably starting with \documentclass[12pt]{article}
The code used for encryption was written in C, and it is required to decrypt the file
/* The ISO/IEC 9899:1990 edition of the C standard */
#define RAND_MAX 32767
static unsigned long int next = 1;
int rand(void) // RAND_MAX assumed to be 32767
{
next = next * 1103515245 + 12345;
return (unsigned int)(next/65536) % 32768;
}
void srand(unsigned int seed)
{
next = seed;
}
#include
#include
//Return a byte at a time of the rand() keystream
char randchar() {
static int key;
static int i = 0;
i = i % 4;
if (i == 0) key = rand();
return ((char *)(&key))[i++];
}
int main(int argc, const char* argv[]) {
static char randstate[64];
srand(time(NULL));
FILE *input, *output;
input = fopen("Homework1b.tex", "r");
output = fopen("Homework1b.tex.enc", "w");
int c,rc;
while ((c = fgetc(input)) != EOF) {
rc=randchar();
printf("c=%d (%c) and rc=%d ",c,c,rc);
fputc(c^rc,output);
}
fclose(input);
fclose(output);
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started