Home | History | Annotate | Download | only in examples

Lines Matching defs:in

8   - using an ssl application callback to find a URI in the
17 * Redistribution and use in source and binary forms, with or without
25 * 2. Redistributions in binary form must reproduce the above copyright
27 * and the original OpenSSL and SSLeay Licences below in
34 * for use in the OpenEvidence Toolkit. (http://www.openevidence.org/)"
36 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
47 * nor may "OpenEvidence" appear in their names without prior written
53 * for use in the OpenEvidence Toolkit (http://www.openevidence.org/)
55 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
63 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenEvidence PROJECT OR
68 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
70 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
75 * for use in the OpenSSL Toolkit (http://www.openssl.org/)
103 " -in arg - input file (request)- default stdin",
105 " -mimetype arg - MIME type for data in ex : application/timestamp-query or application/dvcs -default application/timestamp-query",
107 " -accesstype arg - an Object identifier in an AIA/SIA method, e.g. AD_DVCS or ad_timestamping",
113 ./curlx -p12 psy.p12 -envpass XX -in request -verbose -accesstype AD_DVCS
178 in the presented certificat. If found, this will become
179 the URL to be used in the POST.
260 BIO* in=NULL;
299 if (!strcmp (*args, "-in")) {
350 if ((in=BIO_new(BIO_s_file())) == NULL) {
354 BIO_set_fp(in,stdin,BIO_NOCLOSE|BIO_FP_TEXT);
355 else if (BIO_read_filename(in,infile) <= 0) {
357 BIO_free(in);
393 BIO_printf(p.errorbio,"Invalid P12 structure in %s\n", p.p12file); goto err;
412 BIO_printf(p.errorbio,"no service URL in user cert "
413 "cherching in others certificats\n");
426 BIO_printf(p.errorbio, "no service URL in certificats,"
467 while ((lu = BIO_read (in,&binaryptr[i],tabLength-i)) >0 ) {
507 BIO_free(in);