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
86 * -out arg - output file - default stdout
116 BIO *in=NULL,*out=NULL;
162 else if (strcmp(*argv,"-out") == 0)
222 BIO_printf(bio_err," -out arg output file\n");
241 out=BIO_new(BIO_s_file());
242 if ((in == NULL) || (out == NULL))
260 BIO_set_fp(out,stdout,BIO_NOCLOSE);
264 out = BIO_push(tmpbio, out);
270 if (BIO_write_filename(out,outfile) <= 0)
352 DSAparams_print(out,dsa);
413 i=i2d_DSAparams_bio(out,dsa);
415 i=PEM_write_bio_DSAparams(out,dsa);
440 i=i2d_DSAPrivateKey_bio(out,dsakey);
442 i=PEM_write_bio_DSAPrivateKey(out,dsakey,NULL,NULL,0,NULL,NULL);
455 if (out != NULL) BIO_free_all(out);