Lines Matching defs:in
8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
92 * -in arg - input file - default stdin
95 * -text - print the ec parameters in text form
105 * in the asn1 der encoding
130 BIO *in = NULL, *out = NULL;
165 else if (strcmp(*argv,"-in") == 0)
256 BIO_printf(bio_err, " -in arg input file - "
263 "parameters in text form\n");
282 BIO_printf(bio_err, " in the asn1 der "
302 in=BIO_new(BIO_s_file());
304 if ((in == NULL) || (out == NULL))
311 BIO_set_fp(in,stdin,BIO_NOCLOSE);
314 if (BIO_read_filename(in,infile) <= 0)
389 * prime192v1 and prime256v1 defined in X9.62)
425 group = d2i_ECPKParameters_bio(in, NULL);
429 group = PEM_read_bio_ECPKParameters(in,NULL,NULL,NULL);
691 if (in != NULL)
692 BIO_free(in);
701 static int ecparam_print_var(BIO *out, BIGNUM *in, const char *var,
705 if (BN_is_zero(in))
711 l = BN_bn2bin(in, buffer);