HomeSort by relevance Sort by last modified time
    Searched refs:BIO_printf (Results 126 - 150 of 193) sorted by null

1 2 3 4 56 7 8

  /external/openssl/apps/
apps.c 613 BIO_printf(bio_err, "User interface error\n");
620 BIO_printf(bio_err,"aborted!\n");
657 BIO_printf(err, "Can't read environment variable %s\n", arg + 4);
666 BIO_printf(err, "Can't open file %s\n", arg + 5);
683 BIO_printf(err, "Can't access file descriptor %s\n", arg + 3);
693 BIO_printf(err, "Can't open BIO for stdin\n");
697 BIO_printf(err, "Invalid password argument \"%s\"\n", arg);
707 BIO_printf(err, "Error reading password from BIO\n");
727 BIO_printf(err, "problem loading oid section %s\n", p);
733 BIO_printf(err, "problem creating object %s=%s\n"
    [all...]
s_socket.c 200 BIO_printf(bio_err,"unable to start WINSOCK, error code=%d\n",err);
229 BIO_printf(bio_err,"unable to start WINSOCK2, error code=%d\n",err);
410 BIO_printf(bio_err,"accept error %d\n",i);
444 BIO_printf(bio_err,"bad gethostbyaddr\n");
460 BIO_printf(bio_err,"gethostbyname failure\n");
465 BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
483 BIO_printf(bio_err,"no port defined\n");
509 BIO_printf(bio_err,"invalid IP address\n");
526 BIO_printf(bio_err,"gethostbyname failure\n");
532 BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n")
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
asn1_par.c 95 if (BIO_printf(bp,fmt,p) <= 0)
149 if (BIO_printf(bp,"%5ld:",(long)offset+(long)(op- *pp))
154 if (BIO_printf(bp,"d=%-2d hl=%ld l=%4ld ",
160 if (BIO_printf(bp,"d=%-2d hl=%ld l=inf ",
172 BIO_printf(bp,
245 BIO_printf(bp,":%d",ii);
291 if (BIO_printf(bp,"%02X"
334 if (BIO_printf(bp,"%02X",
366 if (BIO_printf(bp,"%02X",
t_bitst.c 69 BIO_printf(out, "%*s", indent, "");
tasn_prn.c 255 BIO_printf(out, ":EXTERNAL TYPE %s\n", sname) <= 0)
269 if (BIO_printf(out,
319 if (BIO_printf(out, "%*s}\n", indent, "") < 0)
332 BIO_printf(out, "Unprocessed type %d\n", it->itype);
368 if (BIO_printf(out, "%*s%s OF %s {\n",
372 else if (BIO_printf(out, "%*s%s:\n", indent, "",
387 if (!i && BIO_printf(out, "%*s<EMPTY>\n", indent + 2, "") <= 0)
391 if (BIO_printf(out, "%*s}\n", indent, "") <= 0)
435 if (BIO_printf(out, " (%s)", sname) <= 0)
496 if (BIO_printf(out, "%s (%s)", ln, objbuf) <= 0
    [all...]
asn_mime.c 176 BIO_printf(out, "-----BEGIN %s-----\n", hdr);
178 BIO_printf(out, "-----END %s-----\n", hdr);
307 BIO_printf(bio, "MIME-Version: 1.0%s", mime_eol);
308 BIO_printf(bio, "Content-Type: multipart/signed;");
309 BIO_printf(bio, " protocol=\"%ssignature\";", mime_prefix);
312 BIO_printf(bio, "\"; boundary=\"----%s\"%s%s",
314 BIO_printf(bio, "This is an S/MIME signed message%s%s",
317 BIO_printf(bio, "------%s%s", bound, mime_eol);
320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eol);
324 BIO_printf(bio, "Content-Type: %ssignature;", mime_prefix);
    [all...]
  /external/openssl/crypto/asn1/
asn1_par.c 95 if (BIO_printf(bp,fmt,p) <= 0)
149 if (BIO_printf(bp,"%5ld:",(long)offset+(long)(op- *pp))
154 if (BIO_printf(bp,"d=%-2d hl=%ld l=%4ld ",
160 if (BIO_printf(bp,"d=%-2d hl=%ld l=inf ",
172 BIO_printf(bp,
245 BIO_printf(bp,":%d",ii);
291 if (BIO_printf(bp,"%02X"
334 if (BIO_printf(bp,"%02X",
366 if (BIO_printf(bp,"%02X",
t_bitst.c 69 BIO_printf(out, "%*s", indent, "");
tasn_prn.c 255 BIO_printf(out, ":EXTERNAL TYPE %s\n", sname) <= 0)
269 if (BIO_printf(out,
319 if (BIO_printf(out, "%*s}\n", indent, "") < 0)
332 BIO_printf(out, "Unprocessed type %d\n", it->itype);
368 if (BIO_printf(out, "%*s%s OF %s {\n",
372 else if (BIO_printf(out, "%*s%s:\n", indent, "",
387 if (!i && BIO_printf(out, "%*s<EMPTY>\n", indent + 2, "") <= 0)
391 if (BIO_printf(out, "%*s}\n", indent, "") <= 0)
435 if (BIO_printf(out, " (%s)", sname) <= 0)
496 if (BIO_printf(out, "%s (%s)", ln, objbuf) <= 0
    [all...]
asn_mime.c 176 BIO_printf(out, "-----BEGIN %s-----\n", hdr);
178 BIO_printf(out, "-----END %s-----\n", hdr);
307 BIO_printf(bio, "MIME-Version: 1.0%s", mime_eol);
308 BIO_printf(bio, "Content-Type: multipart/signed;");
309 BIO_printf(bio, " protocol=\"%ssignature\";", mime_prefix);
312 BIO_printf(bio, "\"; boundary=\"----%s\"%s%s",
314 BIO_printf(bio, "This is an S/MIME signed message%s%s",
317 BIO_printf(bio, "------%s%s", bound, mime_eol);
320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eol);
324 BIO_printf(bio, "Content-Type: %ssignature;", mime_prefix);
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_pku.c 87 BIO_printf(out, "%*s", indent, "");
v3_cpols.c 373 BIO_printf(out, "%*sPolicy: ", indent, "");
392 BIO_printf(out, "%*sCPS: %s\n", indent, "",
397 BIO_printf(out, "%*sUser Notice:\n", indent, "");
402 BIO_printf(out, "%*sUnknown Qualifier: ",
418 BIO_printf(out, "%*sOrganization: %s\n", indent, "",
420 BIO_printf(out, "%*sNumber%s: ", indent, "",
434 BIO_printf(out, "%*sExplicit Text: %s\n", indent, "",
442 BIO_printf(out, "%*sPolicy: ", indent, "");
446 BIO_printf(out, "%*s%s\n", indent + 2, "",
451 BIO_printf(out, "%*sNo Qualifiers\n", indent + 2, "")
    [all...]
v3_crld.c 251 BIO_printf(out, "%*s%s:\n%*s", indent, "", rname, indent + 2, "");
512 BIO_printf(out, "%*s", indent + 2, "");
523 BIO_printf(out, "%*sFull Name:\n", indent, "");
530 BIO_printf(out, "%*sRelative Name:\n%*s",
545 BIO_printf(out, "%*sOnly User Certificates\n", indent, "");
547 BIO_printf(out, "%*sOnly CA Certificates\n", indent, "");
549 BIO_printf(out, "%*sIndirect CRL\n", indent, "");
554 BIO_printf(out, "%*sOnly Attribute Certificates\n", indent, "");
558 BIO_printf(out, "%*s<EMPTY>\n", indent, "");
580 BIO_printf(out, "%*sCRL Issuer:\n", indent, "")
    [all...]
v3_alt.c 184 BIO_printf(out, "othername:<unsupported>");
188 BIO_printf(out, "X400Name:<unsupported>");
193 BIO_printf(out, "EdiPartyName:<unsupported>");
197 BIO_printf(out, "email:%s",gen->d.ia5->data);
201 BIO_printf(out, "DNS:%s",gen->d.ia5->data);
205 BIO_printf(out, "URI:%s",gen->d.ia5->data);
209 BIO_printf(out, "DirName: ");
216 BIO_printf(out, "IP Address:%d.%d.%d.%d",
220 BIO_printf(out, "IP Address");
223 BIO_printf(out, ":%X", p[0] << 8 | p[1])
    [all...]
v3_pci.c 60 BIO_printf(out, "%*sPath Length Constraint: ", indent, "");
64 BIO_printf(out, "infinite");
66 BIO_printf(out, "%*sPolicy Language: ", indent, "");
70 BIO_printf(out, "%*sPolicy Text: %s\n", indent, "",
  /external/openssl/crypto/x509v3/
v3_pku.c 87 BIO_printf(out, "%*s", indent, "");
v3_cpols.c 373 BIO_printf(out, "%*sPolicy: ", indent, "");
392 BIO_printf(out, "%*sCPS: %s\n", indent, "",
397 BIO_printf(out, "%*sUser Notice:\n", indent, "");
402 BIO_printf(out, "%*sUnknown Qualifier: ",
418 BIO_printf(out, "%*sOrganization: %s\n", indent, "",
420 BIO_printf(out, "%*sNumber%s: ", indent, "",
434 BIO_printf(out, "%*sExplicit Text: %s\n", indent, "",
442 BIO_printf(out, "%*sPolicy: ", indent, "");
446 BIO_printf(out, "%*s%s\n", indent + 2, "",
451 BIO_printf(out, "%*sNo Qualifiers\n", indent + 2, "")
    [all...]
v3_crld.c 251 BIO_printf(out, "%*s%s:\n%*s", indent, "", rname, indent + 2, "");
512 BIO_printf(out, "%*s", indent + 2, "");
523 BIO_printf(out, "%*sFull Name:\n", indent, "");
530 BIO_printf(out, "%*sRelative Name:\n%*s",
545 BIO_printf(out, "%*sOnly User Certificates\n", indent, "");
547 BIO_printf(out, "%*sOnly CA Certificates\n", indent, "");
549 BIO_printf(out, "%*sIndirect CRL\n", indent, "");
554 BIO_printf(out, "%*sOnly Attribute Certificates\n", indent, "");
558 BIO_printf(out, "%*s<EMPTY>\n", indent, "");
580 BIO_printf(out, "%*sCRL Issuer:\n", indent, "")
    [all...]
v3_alt.c 184 BIO_printf(out, "othername:<unsupported>");
188 BIO_printf(out, "X400Name:<unsupported>");
193 BIO_printf(out, "EdiPartyName:<unsupported>");
197 BIO_printf(out, "email:%s",gen->d.ia5->data);
201 BIO_printf(out, "DNS:%s",gen->d.ia5->data);
205 BIO_printf(out, "URI:%s",gen->d.ia5->data);
209 BIO_printf(out, "DirName: ");
216 BIO_printf(out, "IP Address:%d.%d.%d.%d",
220 BIO_printf(out, "IP Address");
223 BIO_printf(out, ":%X", p[0] << 8 | p[1])
    [all...]
v3_pci.c 60 BIO_printf(out, "%*sPath Length Constraint: ", indent, "");
64 BIO_printf(out, "infinite");
66 BIO_printf(out, "%*sPolicy Language: ", indent, "");
70 BIO_printf(out, "%*sPolicy Text: %s\n", indent, "",
  /external/chromium_org/third_party/openssl/openssl/apps/
s_socket.c 200 BIO_printf(bio_err,"unable to start WINSOCK, error code=%d\n",err);
229 BIO_printf(bio_err,"unable to start WINSOCK2, error code=%d\n",err);
410 BIO_printf(bio_err,"accept error %d\n",i);
444 BIO_printf(bio_err,"bad gethostbyaddr\n");
460 BIO_printf(bio_err,"gethostbyname failure\n");
465 BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
483 BIO_printf(bio_err,"no port defined\n");
509 BIO_printf(bio_err,"invalid IP address\n");
526 BIO_printf(bio_err,"gethostbyname failure\n");
532 BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n")
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
eck_prn.c 188 if (BIO_printf(bp, "ASN1 OID: %s", OBJ_nid2sn(nid)) <= 0)
190 if (BIO_printf(bp, "\n") <= 0)
276 if (BIO_printf(bp, "Field Type: %s\n", OBJ_nid2sn(tmp_nid))
290 if (BIO_printf(bp, "Basis Type: %s\n",
373 if (BIO_printf(fp,"%s", name) <= 0)
385 if (BIO_printf(fp,"%02x%s",buf[i],((i+1) == len)?"":":") <= 0)
  /external/openssl/crypto/ec/
eck_prn.c 188 if (BIO_printf(bp, "ASN1 OID: %s", OBJ_nid2sn(nid)) <= 0)
190 if (BIO_printf(bp, "\n") <= 0)
276 if (BIO_printf(bp, "Field Type: %s\n", OBJ_nid2sn(tmp_nid))
290 if (BIO_printf(bp, "Basis Type: %s\n",
373 if (BIO_printf(fp,"%s", name) <= 0)
385 if (BIO_printf(fp,"%02x%s",buf[i],((i+1) == len)?"":":") <= 0)
  /external/chromium_org/third_party/openssl/openssl/crypto/err/
err_prn.c 97 return BIO_printf(&bio, "%s", str);
  /external/openssl/crypto/err/
err_prn.c 97 return BIO_printf(&bio, "%s", str);

Completed in 2323 milliseconds

1 2 3 4 56 7 8