c4.c (801B)
1 #include <stdio.h> 2 #include <ctype.h> 3 #include <ba.h> 4 #include <analysis.h> 5 6 #define MAXLEN 1000 7 8 void preprocess_string(char (*l)[MAXLEN]) 9 { 10 int i; 11 12 while (isspace(**l)) 13 *l++; 14 for (i = 0; i < strlen(*l); i++) { 15 if ((*l)[i] == '\n') { 16 (*l)[i] = '\0'; 17 break; 18 } 19 } 20 } 21 22 int main(int argc, char* argv[]) 23 { 24 unsigned long maxscore; 25 char l[MAXLEN]; 26 ba *best; 27 FILE *p; 28 ba *ct; 29 30 if (argc != 2) 31 return -1; 32 33 p = fopen(argv[1], "r"); 34 35 maxscore = 0; 36 best = (ba *) malloc(sizeof(ba)); 37 38 while (fgets(l, sizeof(l), p)) { 39 unsigned long score; 40 41 preprocess_string(&l); 42 ct = ba_from_hex(l); 43 ct = decrypt_scxor(ct); 44 score = score_english(ct); 45 if (score > maxscore) { 46 maxscore = score; 47 ba_copy(best, ct); 48 } 49 } 50 ba_fprint_ascii(best, stdout, 0); 51 printf("\n"); 52 53 ba_free(ct); 54 }