Lines Matching defs:out
35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
80 * -out arg - output file - default stdout
107 BIO *out=NULL;
154 else if (strcmp(*argv,"-out") == 0)
220 BIO_printf(bio_err," -out arg output file\n");
239 BIO_printf(bio_err," -noout don't print key out\n");
266 out=BIO_new(BIO_s_file());
308 BIO_set_fp(out,stdout,BIO_NOCLOSE);
312 out = BIO_push(tmpbio, out);
318 if (BIO_write_filename(out,outfile) <= 0)
326 if (!RSA_print(out,rsa,0))
335 BIO_printf(out,"Modulus=");
336 BN_print(out,rsa->n);
337 BIO_printf(out,"\n");
345 BIO_printf(out,"RSA key ok\n");
355 BIO_printf(out, "RSA key error: %s\n", ERR_reason_error_string(err));
377 i=i2d_RSAPublicKey_bio(out,rsa);
379 i=i2d_RSA_PUBKEY_bio(out,rsa);
381 else i=i2d_RSAPrivateKey_bio(out,rsa);
398 BIO_write(out,(char *)pp,size);
406 i=PEM_write_bio_RSAPublicKey(out,rsa);
408 i=PEM_write_bio_RSA_PUBKEY(out,rsa);
410 else i=PEM_write_bio_RSAPrivateKey(out,rsa,
418 i = i2b_PVK_bio(out, pk, pvk_encr, 0, passout);
420 i = i2b_PublicKey_bio(out, pk);
422 i = i2b_PrivateKey_bio(out, pk);
437 if(out != NULL) BIO_free_all(out);