Searched refs:b64 (Results 1 - 10 of 10) sorted by relevance

/external/openssl/apps/
H A Dasn1pars.c92 BIO *in=NULL,*out=NULL,*b64=NULL, *derout = NULL; local
284 if ((b64=BIO_new(BIO_f_base64())) == NULL)
286 BIO_push(b64,in);
288 in=b64;
289 b64=tmp;
376 if (b64 != NULL) BIO_free(b64);
H A Drand.c209 BIO *b64 = BIO_new(BIO_f_base64()); local
210 if (b64 == NULL)
212 out = BIO_push(b64, out);
H A Denc.c128 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
489 if ((b64=BIO_new(BIO_f_base64())) == NULL)
493 BIO_set_callback(b64,BIO_debug_callback);
494 BIO_set_callback_arg(b64,(char *)bio_err);
497 BIO_set_flags(b64,BIO_FLAGS_BASE64_NO_NL);
499 wbio=BIO_push(b64,wbio);
501 rbio=BIO_push(b64,rbio);
680 if (b64 != NULL) BIO_free(b64);
/external/ppp/pppd/plugins/
H A Dwinbind.c203 static const char *b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; variable
224 result[out_cnt++] = b64[bits >> 18];
225 result[out_cnt++] = b64[(bits >> 12) & 0x3f];
226 result[out_cnt++] = b64[(bits >> 6) & 0x3f];
227 result[out_cnt++] = b64[bits & 0x3f];
236 result[out_cnt++] = b64[bits >> 18];
237 result[out_cnt++] = b64[(bits >> 12) & 0x3f];
242 result[out_cnt++] = b64[(bits >> 6) & 0x3f];
/external/openssl/crypto/asn1/
H A Dasn_mime.c151 BIO *b64; local
153 b64 = BIO_new(BIO_f_base64());
154 if(!b64)
159 /* prepend the b64 BIO so all data is base64 encoded.
161 out = BIO_push(b64, out);
165 BIO_free(b64);
184 BIO *b64; local
186 if(!(b64 = BIO_new(BIO_f_base64()))) {
190 bio = BIO_push(b64, bio);
196 BIO_free(b64);
[all...]
/external/webkit/WebCore/bridge/qt/
H A Dqt_pixmapruntime.cpp130 const QString b64 = QString("data:image/png;base64,") + ba.toBase64(); local
131 const UString ustring((UChar*)b64.utf16(), b64.length());
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
H A Dtncc.c202 unsigned char *b64; local
214 b64 = base64_encode(message, messageLength, &b64len);
215 if (b64 == NULL)
223 os_free(b64);
231 (unsigned int) messageType, b64);
233 os_free(b64);
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
H A Dtncs.c256 unsigned char *b64; local
272 b64 = base64_encode(message, messageLength, &b64len);
273 if (b64 == NULL)
280 os_free(b64);
289 (unsigned int) messageType, b64);
291 os_free(b64);
/external/ipsec-tools/src/racoon/
H A Dcrypto_openssl.c2568 BIO *bio=NULL, *b64=NULL; local
2577 b64 = BIO_new(BIO_f_base64());
2578 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
2579 bio = BIO_push(b64, bio);
2605 BIO *bio=NULL, *b64=NULL; local
2611 b64 = BIO_new(BIO_f_base64());
2612 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
2613 bio = BIO_push(b64, bio);
/external/ppp/pppd/
H A Deap.c653 struct b64state b64; local
784 BZERO(&b64, sizeof (b64));
786 outp += b64enc(&b64, cipher, 8, outp);
789 outp += b64enc(&b64, cipher, 8, outp);
801 outp += b64enc(&b64, cipher, 8, outp);
803 outp += b64flush(&b64, outp);

Completed in 129 milliseconds