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
81 * -out arg - output file - default stdout
89 BIO *in=NULL,*out=NULL;
135 else if (strcmp(*argv,"-out") == 0)
170 BIO_printf(bio_err," -out arg output file\n");
181 out=BIO_new(BIO_s_file());
182 if ((in == NULL) || (out == NULL))
249 BIO_set_fp(out,stdout,BIO_NOCLOSE);
253 out = BIO_push(tmpbio, out);
259 if (BIO_write_filename(out,outfile) <= 0)
267 i=i2d_PKCS7_bio(out,p7);
269 i=PEM_write_bio_PKCS7(out,p7);
283 if (out != NULL) BIO_free_all(out);
323 /* scan over it and pull out the CRL's */