Lines Matching refs:b64
34 BIO *bmem, *b64;
36 b64 = BIO_new(BIO_f_base64());
37 if (!b64) return NULL;
39 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
43 b64 = BIO_push(b64, bmem);
45 BIO_write(b64, in, insize);
47 (void) BIO_flush(b64);
64 BIO_free_all(b64);
77 BIO *bmem, *b64, *bmem_out;
89 b64 = BIO_new(BIO_f_base64());
90 if (!b64) goto done;
92 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
96 BIO_free(b64);
100 b64 = BIO_push(b64, bmem);
104 BIO_free_all(b64);
108 while((inlen = BIO_read(b64, inbuf, 512)) > 0)
118 BIO_free_all(b64);
127 BIO_free_all(b64);