Lines Matching defs:out
70 {"out", OPT_OUT, '>', "Output file"},
75 {"noout", OPT_NOOUT, '-', "Don't print key out"},
93 BIO *out)
104 ret = i2d_RSAPublicKey_bio(out, rsa) > 0;
106 ret = i2d_RSA_PUBKEY_bio(out, rsa) > 0;
109 ret = PEM_write_bio_RSAPublicKey(out, rsa) > 0;
111 ret = PEM_write_bio_RSA_PUBKEY(out, rsa) > 0;
114 ret = i2b_PublicKey_bio(out, pkey) > 0;
125 BIO *out = NULL;
265 out = bio_open_owner(outfile, outformat, private);
266 if (out == NULL)
271 if ((pubin && EVP_PKEY_print_public(out, pkey, 0, NULL) <= 0)
272 || (!pubin && EVP_PKEY_print_private(out, pkey, 0, NULL) <= 0)) {
284 BIO_printf(out, "Modulus=");
285 BN_print(out, n);
286 BIO_printf(out, "\n");
303 BIO_printf(out, "RSA key ok\n");
368 || !try_legacy_encoding(pkey, outformat, pubout, out))
400 if (!OSSL_ENCODER_to_bio(ectx, out)) {
409 BIO_free_all(out);