Lines Matching defs:out
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
74 BIO *in = NULL, *out = NULL;
144 else if (!strcmp (*args, "-out"))
192 BIO_printf(bio_err, "-out file output file\n");
212 if (!(out = BIO_new_file (outfile, "wb")))
221 out = BIO_new_fp (stdout, BIO_NOCLOSE);
225 out = BIO_push(tmpbio, out);
244 PEM_write_bio_PUBKEY(out,pkey);
246 PEM_write_bio_PrivateKey(out, pkey, cipher,
252 i2d_PUBKEY_bio(out, pkey);
254 i2d_PrivateKey_bio(out, pkey);
267 EVP_PKEY_print_public(out, pkey, 0, NULL);
269 EVP_PKEY_print_private(out, pkey, 0, NULL);
276 BIO_free_all(out);