Home
last modified time | relevance | path

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

123

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/
H A Dsae_pk_gen.c25 char *b64 = NULL, *pw = NULL, *pos, *src; in main() local
134 b64 = base64_encode(der, der_len, NULL); in main()
135 if (!b64) in main()
137 src = pos = b64; in main()
175 printf("sae_password=%s|pk=%s:%s\n", anonymize_common(pw), m_hex, b64); in main()
190 os_free(b64); in main()
/third_party/ffmpeg/libavutil/
H A Dbase64.c149 static const char b64[] = in av_base64_encode() local
163 *dst++ = b64[ i_bits>>26 ]; in av_base64_encode()
164 *dst++ = b64[(i_bits>>20) & 0x3F]; in av_base64_encode()
165 *dst++ = b64[(i_bits>>14) & 0x3F]; in av_base64_encode()
166 *dst++ = b64[(i_bits>>8 ) & 0x3F]; in av_base64_encode()
175 *dst++ = b64[(i_bits << 6 >> i_shift) & 0x3f]; in av_base64_encode()
H A Dhash.c225 uint8_t buf[AV_HASH_MAX_SIZE], b64[AV_BASE64_SIZE(AV_HASH_MAX_SIZE)]; in av_hash_final_b64() local
229 av_base64_encode(b64, sizeof(b64), buf, rsize); in av_hash_final_b64()
231 memcpy(dst, b64, FFMIN(osize, size)); in av_hash_final_b64()
/third_party/libwebsockets/lib/jose/jwk/
H A Djwk.c54 const char **enames, *b64; in lws_jwk_dump() local
70 b64 = oct_b64; in lws_jwk_dump()
75 b64 = rsa_b64; in lws_jwk_dump()
80 b64 = ec_b64; in lws_jwk_dump()
97 if (jwk->e[n].buf && b64[n]) { in lws_jwk_dump()
101 if (jwk->e[n].buf && !b64[n]) in lws_jwk_dump()
H A Djose_key.c353 if (jps->pos + ctx->npos >= (int)sizeof(jps->b64)) in cb_jwk()
356 memcpy(jps->b64 + jps->pos, ctx->buf, ctx->npos); in cb_jwk()
371 jps->b64, (unsigned int)jps->pos) < 0) in cb_jwk()
380 jps->b64, jps->pos) < 0) in cb_jwk()
396 jps->b64, jps->pos) < 0) in cb_jwk()
402 jps->b64, (unsigned int)jps->pos) < 0) in cb_jwk()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Djson.c634 char *b64; in json_add_base64url() local
636 b64 = base64_url_encode(val, len, NULL); in json_add_base64url()
637 if (!b64) in json_add_base64url()
639 json_add_string(json, name, b64); in json_add_base64url()
640 os_free(b64); in json_add_base64url()
648 char *b64; in json_add_base64() local
650 b64 = base64_encode_no_lf(val, len, NULL); in json_add_base64()
651 if (!b64) in json_add_base64()
653 json_add_string(json, name, b64); in json_add_base64()
654 os_free(b64); in json_add_base64()
[all...]
/third_party/skia/modules/pathkit/tests/
H A DtestReporter.js7 let b64 = canvas.toDataURL('image/png');
8 return _report(b64, outputType, testname);
26 let b64 = tempCanvas.toDataURL('image/png');
27 _report(b64, 'svg', testname).then(() => {
/third_party/skia/modules/canvaskit/tests/
H A DtestReporter.js7 let b64 = canvas.toDataURL('image/png');
8 return _report(b64, outputType, testname);
26 let b64 = tempCanvas.toDataURL('image/png');
27 _report(b64, 'svg', testname).then(() => {
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/
H A Dany.js38 function bytesFromBase64(b64) {
40 return Uint8Array.from(tsProtoGlobalThis.Buffer.from(b64, "base64"));
43 const bin = tsProtoGlobalThis.atob(b64);
/third_party/node/deps/openssl/openssl/apps/
H A Dasn1parse.c64 BIO *in = NULL, *b64 = NULL, *derout = NULL; in asn1parse_main() local
205 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in asn1parse_main()
207 BIO_push(b64, in); in asn1parse_main()
209 in = b64; in asn1parse_main()
210 b64 = tmp; in asn1parse_main()
307 BIO_free(b64); in asn1parse_main()
H A Denc.c118 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio = in enc_main() local
418 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in enc_main()
421 BIO_set_callback_ex(b64, BIO_debug_callback_ex); in enc_main()
422 BIO_set_callback_arg(b64, (char *)bio_err); in enc_main()
425 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); in enc_main()
427 wbio = BIO_push(b64, wbio); in enc_main()
429 rbio = BIO_push(b64, rbio); in enc_main()
646 BIO_free(b64); in enc_main()
H A Drand.c110 BIO *b64 = BIO_new(BIO_f_base64()); in rand_main() local
111 if (b64 == NULL) in rand_main()
113 out = BIO_push(b64, out); in rand_main()
/third_party/openssl/apps/
H A Dasn1parse.c64 BIO *in = NULL, *b64 = NULL, *derout = NULL; in asn1parse_main() local
205 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in asn1parse_main()
207 BIO_push(b64, in); in asn1parse_main()
209 in = b64; in asn1parse_main()
210 b64 = tmp; in asn1parse_main()
310 BIO_free(b64); in asn1parse_main()
H A Denc.c118 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio = in enc_main() local
418 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in enc_main()
421 BIO_set_callback_ex(b64, BIO_debug_callback_ex); in enc_main()
422 BIO_set_callback_arg(b64, (char *)bio_err); in enc_main()
425 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); in enc_main()
427 wbio = BIO_push(b64, wbio); in enc_main()
429 rbio = BIO_push(b64, rbio); in enc_main()
643 BIO_free(b64); in enc_main()
H A Drand.c110 BIO *b64 = BIO_new(BIO_f_base64()); in rand_main() local
111 if (b64 == NULL) in rand_main()
113 out = BIO_push(b64, out); in rand_main()
/third_party/ffmpeg/tests/
H A Dbase64.c27 static const char b64[] = in main() local
36 putchar(b64[(i_bits << 6 >> i_shift) & 0x3f]); \ in main()
/third_party/mesa3d/src/nouveau/codegen/lib/
H A Dgk104.asm119 $p1 suldgb b64 $r0d ca zero u8 g[$r4d] $r2 $p0
122 $p2 suldgb b64 $r0d cg zero u8 g[$r4d] $r2 $p0
123 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0
135 $p1 suldgb b64 $r0d ca zero u8 g[$r4d] $r2 $p0
138 $p2 suldgb b64 $r0d cg zero u8 g[$r4d] $r2 $p0
139 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0
147 $p1 suldgb b64 $r0d ca zero u8 g[$r4d] $r2 $p0
149 $p2 suldgb b64 $r0d cg zero u8 g[$r4d] $r2 $p0
150 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0
158 $p1 suldgb b64
[all...]
H A Dgf100.asm104 .b64 #gf100_div_u32
105 .b64 #gf100_div_s32
106 .b64 #gf100_rcp_f64
107 .b64 #gf100_rsq_f64
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/
H A Denvelope.js62 function bytesFromBase64(b64) {
64 return Uint8Array.from(tsProtoGlobalThis.Buffer.from(b64, "base64"));
67 const bin = tsProtoGlobalThis.atob(b64);
H A Dsigstore_rekor.js140 function bytesFromBase64(b64) {
142 return Uint8Array.from(tsProtoGlobalThis.Buffer.from(b64, "base64"));
145 const bin = tsProtoGlobalThis.atob(b64);
H A Devents.js139 function bytesFromBase64(b64) {
141 return Uint8Array.from(tsProtoGlobalThis.Buffer.from(b64, "base64"));
144 const bin = tsProtoGlobalThis.atob(b64);
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Dasn_mime.c108 BIO *b64; in B64_write_ASN1() local
110 b64 = BIO_new(BIO_f_base64()); in B64_write_ASN1()
111 if (b64 == NULL) { in B64_write_ASN1()
116 * prepend the b64 BIO so all data is base64 encoded. in B64_write_ASN1()
118 out = BIO_push(b64, out); in B64_write_ASN1()
122 BIO_free(b64); in B64_write_ASN1()
141 BIO *b64; in b64_read_asn1() local
144 if ((b64 = BIO_new(BIO_f_base64())) == NULL) { in b64_read_asn1()
148 bio = BIO_push(b64, bio); in b64_read_asn1()
154 BIO_free(b64); in b64_read_asn1()
[all...]
/third_party/openssl/crypto/asn1/
H A Dasn_mime.c108 BIO *b64; in B64_write_ASN1() local
110 b64 = BIO_new(BIO_f_base64()); in B64_write_ASN1()
111 if (b64 == NULL) { in B64_write_ASN1()
116 * prepend the b64 BIO so all data is base64 encoded. in B64_write_ASN1()
118 out = BIO_push(b64, out); in B64_write_ASN1()
122 BIO_free(b64); in B64_write_ASN1()
141 BIO *b64; in b64_read_asn1() local
144 if ((b64 = BIO_new(BIO_f_base64())) == NULL) { in b64_read_asn1()
148 bio = BIO_push(b64, bio); in b64_read_asn1()
154 BIO_free(b64); in b64_read_asn1()
[all...]
/third_party/mbedtls/programs/ssl/
H A Dssl_context_info.c339 * /p b64 pointer to the pointer of the buffer for input data
343 * \retval number of bytes written in to the b64 buffer or 0 in case no more
346 size_t read_next_b64_code(uint8_t **b64, size_t *max_len) in read_next_b64_code() argument
384 (*b64)[len++] = c; in read_next_b64_code()
391 ptr = realloc(*b64, new_size); in read_next_b64_code()
396 *b64 = ptr; in read_next_b64_code()
398 (*b64)[len++] = c; in read_next_b64_code()
/third_party/curl/tests/
H A Dtestutil.pm110 while($$thing =~ s/%b64\[(.*?)\]b64%/%%B64%%/i) {

Completed in 15 milliseconds

123