Lines Matching refs:strcmp
144 if (!strcmp (*args, "-nokeys")) options |= NOKEYS; in MAIN()
145 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX; in MAIN()
146 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG; in MAIN()
147 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS; in MAIN()
148 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS; in MAIN()
149 else if (!strcmp (*args, "-cacerts")) options |= CACERTS; in MAIN()
150 else if (!strcmp (*args, "-noout")) options |= (NOKEYS|NOCERTS); in MAIN()
151 else if (!strcmp (*args, "-info")) options |= INFO; in MAIN()
152 else if (!strcmp (*args, "-chain")) chain = 1; in MAIN()
153 else if (!strcmp (*args, "-twopass")) twopass = 1; in MAIN()
154 else if (!strcmp (*args, "-nomacver")) macver = 0; in MAIN()
155 else if (!strcmp (*args, "-descert")) in MAIN()
157 else if (!strcmp (*args, "-export")) export_cert = 1; in MAIN()
158 else if (!strcmp (*args, "-des")) enc=EVP_des_cbc(); in MAIN()
159 else if (!strcmp (*args, "-des3")) enc = EVP_des_ede3_cbc(); in MAIN()
161 else if (!strcmp (*args, "-idea")) enc=EVP_idea_cbc(); in MAIN()
164 else if (!strcmp(*args, "-seed")) enc=EVP_seed_cbc(); in MAIN()
167 else if (!strcmp(*args,"-aes128")) enc=EVP_aes_128_cbc(); in MAIN()
168 else if (!strcmp(*args,"-aes192")) enc=EVP_aes_192_cbc(); in MAIN()
169 else if (!strcmp(*args,"-aes256")) enc=EVP_aes_256_cbc(); in MAIN()
172 else if (!strcmp(*args,"-camellia128")) enc=EVP_camellia_128_cbc(); in MAIN()
173 else if (!strcmp(*args,"-camellia192")) enc=EVP_camellia_192_cbc(); in MAIN()
174 else if (!strcmp(*args,"-camellia256")) enc=EVP_camellia_256_cbc(); in MAIN()
176 else if (!strcmp (*args, "-noiter")) iter = 1; in MAIN()
177 else if (!strcmp (*args, "-maciter")) in MAIN()
179 else if (!strcmp (*args, "-nomaciter")) in MAIN()
181 else if (!strcmp (*args, "-nomac")) in MAIN()
183 else if (!strcmp (*args, "-macalg")) in MAIN()
188 else if (!strcmp (*args, "-nodes")) enc=NULL; in MAIN()
189 else if (!strcmp (*args, "-certpbe")) { in MAIN()
192 } else if (!strcmp (*args, "-keypbe")) { in MAIN()
195 } else if (!strcmp (*args, "-rand")) { in MAIN()
200 } else if (!strcmp (*args, "-inkey")) { in MAIN()
205 } else if (!strcmp (*args, "-certfile")) { in MAIN()
210 } else if (!strcmp (*args, "-name")) { in MAIN()
215 } else if (!strcmp (*args, "-LMK")) in MAIN()
217 else if (!strcmp (*args, "-CSP")) { in MAIN()
222 } else if (!strcmp (*args, "-caname")) { in MAIN()
228 } else if (!strcmp (*args, "-in")) { in MAIN()
233 } else if (!strcmp (*args, "-out")) { in MAIN()
238 } else if (!strcmp(*args,"-passin")) { in MAIN()
243 } else if (!strcmp(*args,"-passout")) { in MAIN()
248 } else if (!strcmp (*args, "-password")) { in MAIN()
254 } else if (!strcmp(*args,"-CApath")) { in MAIN()
259 } else if (!strcmp(*args,"-CAfile")) { in MAIN()
265 } else if (!strcmp(*args,"-engine")) { in MAIN()
963 if (!strcmp(str, "NONE")) in set_pbe()