Lines Matching refs:b64
56 BIO *bio, *b64;
59 b64 = BIO_new(BIO_f_base64());
61 BIO_push(b64, bio);
62 BIO_write(b64, message, strlen(message));
63 BIO_flush(b64);
65 BIO_free_all(b64);
70 BIO *bio, *b64, *bio_out;
74 b64 = BIO_new(BIO_f_base64());
77 BIO_push(b64, bio);
78 while ((inlen = BIO_read(b64, inbuf, 512)) > 0)
82 BIO_free_all(b64);