Lines Matching defs:out
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
76 * -out arg - output file - default stdout
93 BIO *in = NULL, *out = NULL;
139 else if (strcmp(*argv,"-out") == 0)
219 BIO_printf(bio_err, " -out arg output file\n");
229 BIO_printf(bio_err, " -noout don't print key out\n");
264 out = BIO_new(BIO_s_file());
265 if ((in == NULL) || (out == NULL))
313 BIO_set_fp(out, stdout, BIO_NOCLOSE);
317 out = BIO_push(tmpbio, out);
323 if (BIO_write_filename(out, outfile) <= 0)
339 if (!EC_KEY_print(out, eckey, 0))
356 i = i2d_ECPKParameters_bio(out, group);
358 i = i2d_EC_PUBKEY_bio(out, eckey);
360 i = i2d_ECPrivateKey_bio(out, eckey);
365 i = PEM_write_bio_ECPKParameters(out, group);
367 i = PEM_write_bio_EC_PUBKEY(out, eckey);
369 i = PEM_write_bio_ECPrivateKey(out, eckey, enc,
389 if (out)
390 BIO_free_all(out);