/* Skeleton main program for the CSE 40771 Assignment 2. This program simply calls the function md5_string to compute the checksum of the string passed on the command line. You must modify it to search for all strings that might match a given checksum passed on the command line. */ #include "md5.h" #include #include int main( int argc, char *argv[] ) { char checksum[33]; if(argc!=2) { fprintf(stderr,"use: md5search \n"); return 1; } md5_string(argv[1],checksum); printf("checksum of %s is %s\n",argv[1],checksum); return 0; }