Home | History | Annotate | Download | only in apps

Lines Matching refs:argv

88 int MAIN(int argc, char **argv)
108 argv++;
119 if (!strcmp(*argv,"-in"))
122 infile= *(++argv);
124 else if (!strcmp(*argv,"-out"))
127 outfile= *(++argv);
129 else if (!strcmp(*argv,"-sigfile"))
132 sigfile= *(++argv);
134 else if(!strcmp(*argv, "-inkey"))
141 *(++argv), keyform, key_type,
152 else if (!strcmp(*argv,"-peerkey"))
156 else if (!setup_peer(bio_err, ctx, peerform, *(++argv)))
159 else if (!strcmp(*argv,"-passin"))
162 passargin= *(++argv);
164 else if (strcmp(*argv,"-peerform") == 0)
167 peerform=str2fmt(*(++argv));
169 else if (strcmp(*argv,"-keyform") == 0)
172 keyform=str2fmt(*(++argv));
175 else if(!strcmp(*argv, "-engine"))
180 e = setup_engine(bio_err, *(++argv), 0);
183 else if(!strcmp(*argv, "-pubin"))
185 else if(!strcmp(*argv, "-certin"))
187 else if(!strcmp(*argv, "-asn1parse"))
189 else if(!strcmp(*argv, "-hexdump"))
191 else if(!strcmp(*argv, "-sign"))
193 else if(!strcmp(*argv, "-verify"))
195 else if(!strcmp(*argv, "-verifyrecover"))
197 else if(!strcmp(*argv, "-rev"))
199 else if(!strcmp(*argv, "-encrypt"))
201 else if(!strcmp(*argv, "-decrypt"))
203 else if(!strcmp(*argv, "-derive"))
205 else if (strcmp(*argv,"-pkeyopt") == 0)
215 else if (pkey_ctrl_string(ctx, *(++argv)) <= 0)
229 argv++;