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
75 int set_hex(char *in,unsigned char *out,int size);
127 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL;
177 else if (strcmp(*argv,"-out") == 0)
302 BIO_printf(bio_err,"%-14s output file\n","-out <file>");
397 out=BIO_new(BIO_s_file());
398 if ((in == NULL) || (out == NULL))
406 BIO_set_callback(out,BIO_debug_callback);
408 BIO_set_callback_arg(out,(char *)bio_err);
468 BIO_set_fp(out,stdout,BIO_NOCLOSE);
476 out = BIO_push(tmpbio, out);
482 if (BIO_write_filename(out,outf) <= 0)
490 wbio=out;
694 BIO_printf(bio_err,"bytes written:%8ld\n",BIO_number_written(out));
701 if (out != NULL) BIO_free_all(out);
712 int set_hex(char *in, unsigned char *out, int size)
723 memset(out,0,size);
741 out[i/2]|=j;
743 out[i/2]=(j<<4);