Lines Matching defs:in
8 - using an ssl application callback to find a URI in the
20 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
30 * and the original OpenSSL and SSLeay Licences below in
37 * for use in the OpenEvidence Toolkit. (http://www.openevidence.org/)"
39 * for use in the OpenSSL Toolkit (https://www.openssl.org/)"
50 * nor may "OpenEvidence" appear in their names without prior written
56 * for use in the OpenEvidence Toolkit (http://www.openevidence.org/)
58 * for use in the OpenSSL Toolkit (https://www.openssl.org/)"
66 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenEvidence PROJECT OR
71 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
73 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
78 * for use in the OpenSSL Toolkit (https://www.openssl.org/)
107 " -in arg - input file (request)- default stdin",
110 " -mimetype arg - MIME type for data in ex : application/timestamp-query"
114 " -accesstype arg - an Object identifier in an AIA/SIA method, e.g."
121 ./curlx -p12 psy.p12 -envpass XX -in request -verbose -accesstype AD_DVCS
186 in the presented certificat. If found, this will become
187 the URL to be used in the POST.
270 BIO* in=NULL;
307 if(!strcmp (*args, "-in")) {
384 if((in=BIO_new(BIO_s_file())) == NULL) {
389 BIO_set_fp(in, stdin, BIO_NOCLOSE|BIO_FP_TEXT);
390 else if(BIO_read_filename(in, infile) <= 0) {
392 BIO_free(in);
429 BIO_printf(p.errorbio, "Invalid P12 structure in %s\n", p.p12file);
452 BIO_printf(p.errorbio, "no service URL in user cert "
453 "cherching in others certificats\n");
466 BIO_printf(p.errorbio, "no service URL in certificats,"
508 while((lu = BIO_read (in, &binaryptr[i], tabLength-i)) >0) {
548 BIO_free(in);