Home | History | Annotate | Download | only in apps

Lines Matching refs:argv

101 int MAIN(int argc, char **argv)
146 argv++;
151 if (strcmp(*argv,"-p") == 0)
154 if (!args_from_file(++argv,Nargc,Nargv)) { goto end; }*/
157 if (strcmp(*argv,"-inform") == 0)
160 informat=str2fmt(*(++argv));
162 else if (strcmp(*argv,"-outform") == 0)
165 outformat=str2fmt(*(++argv));
167 else if (strcmp(*argv,"-in") == 0)
170 infile= *(++argv);
172 else if (strcmp(*argv,"-out") == 0)
175 outfile= *(++argv);
177 else if (strcmp(*argv,"-CApath") == 0)
180 CApath = *(++argv);
183 else if (strcmp(*argv,"-CAfile") == 0)
186 CAfile = *(++argv);
189 else if (strcmp(*argv,"-verify") == 0)
191 else if (strcmp(*argv,"-text") == 0)
193 else if (strcmp(*argv,"-hash") == 0)
195 else if (strcmp(*argv,"-nameopt") == 0)
198 if (!set_name_ex(&nmflag, *(++argv))) goto bad;
200 else if (strcmp(*argv,"-issuer") == 0)
202 else if (strcmp(*argv,"-lastupdate") == 0)
204 else if (strcmp(*argv,"-nextupdate") == 0)
206 else if (strcmp(*argv,"-noout") == 0)
208 else if (strcmp(*argv,"-fingerprint") == 0)
210 else if (strcmp(*argv,"-crlnumber") == 0)
212 else if ((md_alg=EVP_get_digestbyname(*argv + 1)))
219 BIO_printf(bio_err,"unknown option %s\n",*argv);
224 argv++;