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

/freebsd-9.3-release/crypto/openssl/demos/
H A Db64.c1 /* demos/b64.c */
92 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio = local
213 if ((b64 = BIO_new(BIO_f_base64())) == NULL)
216 BIO_set_callback(b64, BIO_debug_callback);
217 BIO_set_callback_arg(b64, bio_err);
220 wbio = BIO_push(b64, wbio);
222 rbio = BIO_push(b64, rbio);
252 if (b64 != NULL)
253 BIO_free(b64);
/freebsd-9.3-release/sys/crypto/
H A Dsha1.h48 u_int64_t b64[1]; member in union:sha1_ctxt::__anon6772
H A Dsha1.c69 #define BCOUNT (ctxt->c.b64[0] / 8)
76 ctxt->c.b64[0] += 8; \
244 ctxt->c.b64[0] += copysiz * 8;
/freebsd-9.3-release/crypto/openssl/apps/
H A Dasn1pars.c94 BIO *in = NULL, *out = NULL, *b64 = NULL, *derout = NULL; local
269 if ((b64 = BIO_new(BIO_f_base64())) == NULL)
271 BIO_push(b64, in);
273 in = b64;
274 b64 = tmp;
359 if (b64 != NULL)
360 BIO_free(b64);
H A Denc.c118 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio = local
428 if ((b64 = BIO_new(BIO_f_base64())) == NULL)
431 BIO_set_callback(b64, BIO_debug_callback);
432 BIO_set_callback_arg(b64, (char *)bio_err);
435 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
437 wbio = BIO_push(b64, wbio);
439 rbio = BIO_push(b64, rbio);
616 if (b64 != NULL)
617 BIO_free(b64);
H A Drand.c192 BIO *b64 = BIO_new(BIO_f_base64()); local
193 if (b64 == NULL)
195 out = BIO_push(b64, out);
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dasn_mime.c117 BIO *b64; local
119 b64 = BIO_new(BIO_f_base64());
120 if (!b64) {
125 * prepend the b64 BIO so all data is base64 encoded.
127 out = BIO_push(b64, out);
131 BIO_free(b64);
137 BIO *b64; local
139 if (!(b64 = BIO_new(BIO_f_base64()))) {
143 bio = BIO_push(b64, bio);
149 BIO_free(b64);
[all...]
/freebsd-9.3-release/contrib/wpa/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);
/freebsd-9.3-release/contrib/wpa/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);
/freebsd-9.3-release/sys/ofed/drivers/infiniband/hw/mlx4/
H A Dmad.c312 static __be32 be64_to_be32(__be64 b64) argument
314 return cpu_to_be32(be64_to_cpu(b64) & 0xffffffff);
/freebsd-9.3-release/contrib/sendmail/mail.local/
H A Dmail.local.c1671 char b64[24];
1704 b64[(4 * i) + j] = Base64[(bits & 0x3f)];
1708 b64[22] = '\0';
1709 str = b64;

Completed in 76 milliseconds