/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/ |
H A D | sae_pk_gen.c | 25 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 D | base64.c | 149 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 D | hash.c | 225 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 D | jwk.c | 54 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 D | jose_key.c | 353 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 D | json.c | 634 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 D | testReporter.js | 7 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 D | testReporter.js | 7 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 D | any.js | 38 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 D | asn1parse.c | 64 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 D | enc.c | 118 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 D | rand.c | 110 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 D | asn1parse.c | 64 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 D | enc.c | 118 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 D | rand.c | 110 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 D | base64.c | 27 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 D | gk104.asm | 119 $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 D | gf100.asm | 104 .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 D | envelope.js | 62 function bytesFromBase64(b64) { 64 return Uint8Array.from(tsProtoGlobalThis.Buffer.from(b64, "base64")); 67 const bin = tsProtoGlobalThis.atob(b64);
|
H A D | sigstore_rekor.js | 140 function bytesFromBase64(b64) { 142 return Uint8Array.from(tsProtoGlobalThis.Buffer.from(b64, "base64")); 145 const bin = tsProtoGlobalThis.atob(b64);
|
H A D | events.js | 139 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 D | asn_mime.c | 108 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 D | asn_mime.c | 108 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 D | ssl_context_info.c | 339 * /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 D | testutil.pm | 110 while($$thing =~ s/%b64\[(.*?)\]b64%/%%B64%%/i) {
|