#include<crypt.h>#include<string.h>intmain(intargc,char*argv[]){constcharsalt[]="$1$saltstring";char*cp;intresult=0;cp=crypt("Hello world!",salt);/* MD5 is disabled in FIPS mode. */if(cp)result|=strcmp("$1$saltstri$YMyguxXMBpd2TEZ.vS/3q1",cp);returnresult;}