Home | History | Annotate | Download | only in apps

Lines Matching refs:argv

79 int MAIN(int argc, char **argv)
104 argv++;
109 if (strcmp(*argv,"-out") == 0)
112 outfile= *(++argv);
114 else if (strcmp(*argv,"-passout") == 0)
117 passargout= *(++argv);
120 else if (strcmp(*argv,"-engine") == 0)
123 engine= *(++argv);
126 else if (strcmp(*argv,"-rand") == 0)
129 inrand= *(++argv);
131 else if (strcmp(*argv,"-") == 0)
134 else if (strcmp(*argv,"-des") == 0)
136 else if (strcmp(*argv,"-des3") == 0)
140 else if (strcmp(*argv,"-idea") == 0)
144 else if (strcmp(*argv,"-seed") == 0)
148 else if (strcmp(*argv,"-aes128") == 0)
150 else if (strcmp(*argv,"-aes192") == 0)
152 else if (strcmp(*argv,"-aes256") == 0)
156 else if (strcmp(*argv,"-camellia128") == 0)
158 else if (strcmp(*argv,"-camellia192") == 0)
160 else if (strcmp(*argv,"-camellia256") == 0)
163 else if (**argv != '-' && dsaparams == NULL)
165 dsaparams = *argv;
169 argv++;