• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/apps/

Lines Matching refs:BIO_printf

186 					BIO_printf(bio_err,
199 BIO_printf(bio_err,
285 BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
286 BIO_printf (bio_err, "where options are\n");
287 BIO_printf (bio_err, "-export output PKCS12 file\n");
288 BIO_printf (bio_err, "-chain add certificate chain\n");
289 BIO_printf (bio_err, "-inkey file private key if not infile\n");
290 BIO_printf (bio_err, "-certfile f add all certs in f\n");
291 BIO_printf (bio_err, "-CApath arg - PEM format directory of CA's\n");
292 BIO_printf (bio_err, "-CAfile arg - PEM format file of CA's\n");
293 BIO_printf (bio_err, "-name \"name\" use name as friendly name\n");
294 BIO_printf (bio_err, "-caname \"nm\" use nm as CA friendly name (can be used more than once).\n");
295 BIO_printf (bio_err, "-in infile input filename\n");
296 BIO_printf (bio_err, "-out outfile output filename\n");
297 BIO_printf (bio_err, "-noout don't output anything, just verify.\n");
298 BIO_printf (bio_err, "-nomacver don't verify MAC.\n");
299 BIO_printf (bio_err, "-nocerts don't output certificates.\n");
300 BIO_printf (bio_err, "-clcerts only output client certificates.\n");
301 BIO_printf (bio_err, "-cacerts only output CA certificates.\n");
302 BIO_printf (bio_err, "-nokeys don't output private keys.\n");
303 BIO_printf (bio_err, "-info give info about PKCS#12 structure.\n");
304 BIO_printf (bio_err, "-des encrypt private keys with DES\n");
305 BIO_printf (bio_err, "-des3 encrypt private keys with triple DES (default)\n");
307 BIO_printf (bio_err, "-idea encrypt private keys with idea\n");
310 BIO_printf (bio_err, "-aes128, -aes192, -aes256\n");
311 BIO_printf (bio_err, " encrypt PEM output with cbc aes\n");
314 BIO_printf (bio_err, "-camellia128, -camellia192, -camellia256\n");
315 BIO_printf (bio_err, " encrypt PEM output with cbc camellia\n");
317 BIO_printf (bio_err, "-nodes don't encrypt private keys\n");
318 BIO_printf (bio_err, "-noiter don't use encryption iteration\n");
319 BIO_printf (bio_err, "-maciter use MAC iteration\n");
320 BIO_printf (bio_err, "-twopass separate MAC, encryption passwords\n");
321 BIO_printf (bio_err, "-descert encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
322 BIO_printf (bio_err, "-certpbe alg specify certificate PBE algorithm (default RC2-40)\n");
323 BIO_printf (bio_err, "-keypbe alg specify private key PBE algorithm (default 3DES)\n");
324 BIO_printf (bio_err, "-keyex set MS key exchange type\n");
325 BIO_printf (bio_err, "-keysig set MS key signature type\n");
326 BIO_printf (bio_err, "-password p set import/export password source\n");
327 BIO_printf (bio_err, "-passin p input file pass phrase source\n");
328 BIO_printf (bio_err, "-passout p output file pass phrase source\n");
330 BIO_printf (bio_err, "-engine e use engine e, possibly a hardware device.\n");
332 BIO_printf(bio_err, "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
333 BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
334 BIO_printf(bio_err, " the random number generator\n");
348 BIO_printf(bio_err, "Error getting passwords\n");
368 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
380 BIO_printf(bio_err, "Error opening input file %s\n",
401 BIO_printf(bio_err, "Error opening output file %s\n",
412 BIO_printf (bio_err, "Can't read Password\n");
429 BIO_printf(bio_err, "Nothing to do!\n");
480 BIO_printf(bio_err, "No certificate matches private key\n");
522 BIO_printf (bio_err, "Memory allocation error\n");
540 BIO_printf (bio_err, "Error %s getting chain.\n",
569 BIO_printf (bio_err, "Can't read Password\n");
627 BIO_printf (bio_err, "Can't read Password\n");
636 if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
646 BIO_printf (bio_err, "Mac verify error: invalid password?\n");
650 BIO_printf (bio_err, "MAC verified OK\n");
660 BIO_printf(bio_err, "Error outputting keys and certificates\n");
698 if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
701 BIO_printf(bio_err, "PKCS7 Encrypted data: ");
749 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
761 BIO_printf (bio_err, "Shrouded Keybag: ");
779 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
794 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
800 BIO_printf (bio_err, "Warning unsupported bag type: ");
802 BIO_printf (bio_err, "\n");
848 BIO_printf (bio_err, "%s, Iteration %ld\n",
891 BIO_printf(out, "%s: <No Attributes>\n", name);
895 BIO_printf(out, "%s: <Empty Attributes>\n", name);
898 BIO_printf(out, "%s\n", name);
902 BIO_printf(out, " ");
905 BIO_printf(out, ": ");
906 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
914 BIO_printf(out, "%s\n", value);
921 BIO_printf(out, "\n");
927 BIO_printf(out, "\n");
931 BIO_printf(out, "<Unsupported tag %d>\n", av->type);
934 } else BIO_printf(out, "<No Values>\n");
942 for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);