Home | History | Annotate | Download | only in apps

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
77 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
112 BIO *out = NULL;
137 BIO_printf(bio_err,"out of memory\n");
166 else if (strcmp(*argv,"-out") == 0)
280 BIO_printf(bio_err,"-out filename output to filename rather than stdout\n");
327 out = BIO_new_file(outfile, "wb");
328 else out = BIO_new_file(outfile, "w");
330 out = BIO_new_fp(stdout, BIO_NOCLOSE);
334 out = BIO_push(tmpbio, out);
339 if(!out) {
501 err=do_fp(out, buf,inp,separator, out_bin, sigkey, sigbuf,
530 r=do_fp(out,buf,inp,separator,out_bin,sigkey,sigbuf,
546 BIO_free_all(out);
558 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
583 BIO_printf(out, "Verified OK\n");
586 BIO_printf(out, "Verification Failure\n");
619 if(binout) BIO_write(out, buf, len);
623 BIO_printf(out, "%02x",buf[i]);
624 BIO_printf(out, " *%s\n", file);
629 BIO_printf(out, "%s-%s(%s)= ", sig_name, md_name, file);
631 BIO_printf(out, "%s(%s)= ", md_name, file);
633 BIO_printf(out, "(%s)= ", file);
637 BIO_printf(out, ":");
638 BIO_printf(out, "%02x",buf[i]);
640 BIO_printf(out, "\n");