Lines Matching defs:in
50 * -in file - read passwords from file
70 BIO *in = NULL, *out = NULL;
115 else if (strcmp(argv[i], "-in") == 0)
181 BIO_printf(bio_err, "-in file read passwords from file\n");
193 in = BIO_new(BIO_s_file());
194 if (in == NULL)
199 if (BIO_read_filename(in, infile) <= 0)
205 BIO_set_fp(in, stdin, BIO_NOCLOSE);
225 if ((in == NULL) && (passwds == NULL))
231 if (in == NULL)
237 if (in == NULL)
252 /* in != NULL */
259 int r = BIO_gets(in, passwd, pw_maxlen + 1);
270 r = BIO_gets(in, trash, sizeof trash);
290 if (in)
291 BIO_free(in);