Home | History | Annotate | Download | only in asn1

Lines Matching full:b64

115 	BIO *b64;
117 b64 = BIO_new(BIO_f_base64());
118 if(!b64)
123 /* prepend the b64 BIO so all data is base64 encoded.
125 out = BIO_push(b64, out);
129 BIO_free(b64);
135 BIO *b64;
137 if(!(b64 = BIO_new(BIO_f_base64()))) {
141 bio = BIO_push(b64, bio);
147 BIO_free(b64);