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
104 BIO *in=NULL,*out=NULL;
154 else if (strcmp(*argv,"-out") == 0)
211 BIO_printf(bio_err," -out arg output file\n");
233 BIO_printf(bio_err," -noout don't print key out\n");
250 out=BIO_new(BIO_s_file());
251 if ((in == NULL) || (out == NULL))
295 BIO_set_fp(out,stdout,BIO_NOCLOSE);
299 out = BIO_push(tmpbio, out);
305 if (BIO_write_filename(out,outfile) <= 0)
313 if (!DSA_print(out,dsa,0))
323 BN_print(out,dsa->pub_key);
330 if(pubin || pubout) i=i2d_DSA_PUBKEY_bio(out,dsa);
331 else i=i2d_DSAPrivateKey_bio(out,dsa);
334 i=PEM_write_bio_DSA_PUBKEY(out,dsa);
335 else i=PEM_write_bio_DSAPrivateKey(out,dsa,enc,
343 i = i2b_PVK_bio(out, pk, pvk_encr, 0, passout);
345 i = i2b_PublicKey_bio(out, pk);
347 i = i2b_PrivateKey_bio(out, pk);
363 if(out != NULL) BIO_free_all(out);