Lines Matching defs:in
11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
133 BIO *in=NULL;
138 in=BIO_new(BIO_s_file_internal());
140 if ((in == NULL) || (BIO_read_filename(in,file) <= 0))
150 x=PEM_read_bio_X509_AUX(in,NULL,NULL,NULL);
176 x=d2i_X509_bio(in,NULL);
193 if (in != NULL) BIO_free(in);
200 BIO *in=NULL;
205 in=BIO_new(BIO_s_file_internal());
207 if ((in == NULL) || (BIO_read_filename(in,file) <= 0))
217 x=PEM_read_bio_X509_CRL(in,NULL,NULL,NULL);
243 x=d2i_X509_CRL_bio(in,NULL);
260 if (in != NULL) BIO_free(in);
268 BIO *in;
272 in = BIO_new_file(file, "r");
273 if(!in) {
277 inf = PEM_X509_INFO_read_bio(in, NULL, NULL, NULL);
278 BIO_free(in);