Lines Matching full:printf
142 printf("getrrsetbyname: %s\n", hstrerror(error));
152 printf("getrrsetbyname: %s", hstrerror(error));
159 printf("rr is not valid");
174 printf("type=%d keytag=%d alg=%d len=%d\n",
183 printf("getnewci: %s", strerror(errno));
232 printf("realloc: %s", strerror(errno));
246 printf("get a DNS packet len=%d\n", anslen);
259 printf("query count is not 1.\n");
268 printf("dn_expand failed.\n");
281 printf("dn_expand failed.\n");
294 printf("not T_CERT\n");
307 printf("rdlength is too long.\n");
313 printf("type=%d keytag=%d alg=%d len=%d\n",
322 printf("getnewci: %s", strerror(errno));
357 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
358 printf("%c", b64t[((p[0] << 4) & 0x30) | ((p[1] >> 4) & 0x0f)]);
359 printf("%c", b64t[((p[1] << 2) & 0x3c) | ((p[2] >> 6) & 0x03)]);
360 printf("%c", b64t[p[2] & 0x3f]);
366 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
367 printf("%c", b64t[((p[0] << 4) & 0x30)| ((p[1] >> 4) & 0x0f)]);
368 printf("%c", b64t[((p[1] << 2) & 0x3c)]);
369 printf("%c", '=');
371 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
372 printf("%c", b64t[((p[0] << 4) & 0x30)]);
373 printf("%c", '=');
374 printf("%c", '=');
389 printf("Usage: a.out (FQDN)\n");
398 printf("getcertsbyname succeeded.\n");
402 printf("certinfo[%d]:\n", i);
403 printf("\tci_type=%d\n", p->ci_type);
404 printf("\tci_keytag=%d\n", p->ci_keytag);
405 printf("\tci_algorithm=%d\n", p->ci_algorithm);
406 printf("\tci_flags=%d\n", p->ci_flags);
407 printf("\tci_certlen=%d\n", p->ci_certlen);
408 printf("\tci_cert: ");
410 printf("\n");