I have written a C code as given below for decrypting an encrypted string, using popen for the purpose.
snprintf(cmdcheck,1000,"echo %s %c openssl aes-256-cbc -d -a -salt -pass pass:excel2012", idcheck,'|');
FILE *cmdid = popen(cmdcheck,"r");
The code complies well, but on running gives the following error:
sh: Syntax error: "|" unexpected
What can be done to resolve the issue? Thanks in advance. My operating platform is Linux.
idcheck? – Ed Heal Jun 22 '12 at 10:23\"%s\"– cdarke Jun 22 '12 at 10:36cmdidto see whatshis seeing. – Ed Heal Jun 22 '12 at 10:37