Home | History | Annotate | Download | only in apps

Lines Matching full:bio_err

110 	if(!bio_err) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
112 if (!load_config(bio_err, NULL))
145 BIO_puts(bio_err,
147 ERR_print_errors(bio_err);
156 else if (!setup_peer(bio_err, ctx, peerform, *(++argv)))
180 e = setup_engine(bio_err, *(++argv), 0);
211 BIO_puts(bio_err,
217 BIO_puts(bio_err, "parameter setting error\n");
218 ERR_print_errors(bio_err);
240 BIO_puts(bio_err, "Signature file specified for non verify\n");
246 BIO_puts(bio_err, "No signature file specified for verify\n");
251 app_RAND_load_file(NULL, bio_err, 0);
259 BIO_puts(bio_err,
261 ERR_print_errors(bio_err);
273 BIO_printf(bio_err, "Error Creating Output File\n");
274 ERR_print_errors(bio_err);
294 BIO_printf(bio_err, "Can't open signature file %s\n",
302 BIO_printf(bio_err, "Error reading signature data\n");
313 BIO_printf(bio_err, "Error reading input Data\n");
359 BIO_printf(bio_err, "Public Key operation error\n");
360 ERR_print_errors(bio_err);
367 ERR_print_errors(bio_err);
390 BIO_printf(bio_err, "Usage: pkeyutl [options]\n");
391 BIO_printf(bio_err, "-in file input file\n");
392 BIO_printf(bio_err, "-out file output file\n");
393 BIO_printf(bio_err, "-sigfile file signature file (verify operation only)\n");
394 BIO_printf(bio_err, "-inkey file input key\n");
395 BIO_printf(bio_err, "-keyform arg private key format - default PEM\n");
396 BIO_printf(bio_err, "-pubin input is a public key\n");
397 BIO_printf(bio_err, "-certin input is a certificate carrying a public key\n");
398 BIO_printf(bio_err, "-pkeyopt X:Y public key options\n");
399 BIO_printf(bio_err, "-sign sign with private key\n");
400 BIO_printf(bio_err, "-verify verify with public key\n");
401 BIO_printf(bio_err, "-verifyrecover verify with public key, recover original data\n");
402 BIO_printf(bio_err, "-encrypt encrypt with public key\n");
403 BIO_printf(bio_err, "-decrypt decrypt with private key\n");
404 BIO_printf(bio_err, "-derive derive shared secret\n");
405 BIO_printf(bio_err, "-hexdump hex dump output\n");
407 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
409 BIO_printf(bio_err, "-passin arg pass phrase source\n");
426 BIO_printf(bio_err, "A private key is needed for this operation\n");
429 if(!app_passwd(bio_err, passargin, NULL, &passin, NULL))
431 BIO_printf(bio_err, "Error getting password\n");
437 pkey = load_key(bio_err, keyfile, keyform, 0,
442 pkey = load_pubkey(bio_err, keyfile, keyform, 0,
447 x = load_cert(bio_err, keyfile, keyform,
524 peer = load_pubkey(bio_err, file, peerform, 0, NULL, NULL, "Peer Key");
528 BIO_printf(bio_err, "Error reading peer key %s\n", file);