Lines Matching defs:out
157 {"out", OPT_OUT, '>', "Output file"},
237 BIO *out = NULL;
706 out = bio_open_owner(keyout, outformat, newreq);
707 if (out == NULL)
724 if (!PEM_write_bio_PrivateKey(out, pkey, cipher,
734 BIO_free_all(out);
735 out = NULL;
909 BIO_printf(out, "Modifying subject of certificate request\n");
910 print_name(out, "Old subject=", X509_REQ_get_subject_name(req));
919 print_name(out, "New subject=", X509_REQ_get_subject_name(req));
947 out = bio_open_default(outfile,
951 if (out == NULL)
961 PEM_write_bio_PUBKEY(out, tpubkey);
966 ret = X509_print_ex(out, new_x509, get_nameopt(), reqflag);
968 ret = X509_REQ_print_ex(out, req, get_nameopt(), reqflag);
980 print_name(out, "subject=", gen_x509
1002 BN_print(out, n);
1012 i = i2d_X509_REQ_bio(out, req);
1014 i = PEM_write_bio_X509_REQ_NEW(out, req);
1016 i = PEM_write_bio_X509_REQ(out, req);
1024 i = i2d_X509_bio(out, new_x509);
1026 i = PEM_write_bio_X509(out, new_x509);
1040 BIO_free_all(out);