Lines Matching full:argv
79 int MAIN(int argc, char **argv)
101 argv++;
106 if (strcmp(*argv,"-out") == 0)
109 outfile= *(++argv);
111 else if (strcmp(*argv,"-passout") == 0)
114 passargout= *(++argv);
117 else if (strcmp(*argv,"-engine") == 0)
120 engine= *(++argv);
123 else if (strcmp(*argv,"-rand") == 0)
126 inrand= *(++argv);
128 else if (strcmp(*argv,"-") == 0)
131 else if (strcmp(*argv,"-des") == 0)
133 else if (strcmp(*argv,"-des3") == 0)
137 else if (strcmp(*argv,"-idea") == 0)
141 else if (strcmp(*argv,"-seed") == 0)
145 else if (strcmp(*argv,"-aes128") == 0)
147 else if (strcmp(*argv,"-aes192") == 0)
149 else if (strcmp(*argv,"-aes256") == 0)
153 else if (strcmp(*argv,"-camellia128") == 0)
155 else if (strcmp(*argv,"-camellia192") == 0)
157 else if (strcmp(*argv,"-camellia256") == 0)
160 else if (**argv != '-' && dsaparams == NULL)
162 dsaparams = *argv;
166 argv++;