/third_party/python/Lib/encodings/ |
H A D | base64_codec.py | 17 def base64_decode(input, errors='strict'): function 25 return base64_decode(input, errors) 49 decode=base64_decode,
|
/third_party/node/deps/base64/base64/test/ |
H A D | test_base64.c | 41 if (!base64_decode(src, srclen, out, &outlen, flags)) { in assert_dec() 72 if (!base64_decode(out, outlen, tmp, &tmplen, flags)) { in assert_roundtrip() 130 if (!base64_decode(enc, enclen, dec, &declen, flags)) { in test_char_table() 268 if (base64_decode(invalid_strings[i], strlen(invalid_strings[i]), dec, &declen, flags)) { in test_invalid_dec_input() 281 if (base64_decode(enc, enclen, dec, &declen, flags)) { in test_invalid_dec_input() 300 if (base64_decode(enc, enclen, dec, &declen, flags)) { in test_invalid_dec_input()
|
H A D | codec_supported.c | 28 return (base64_decode(a, strlen(a), b, &outlen, flags) != -1); in codec_supported()
|
H A D | benchmark.c | 216 base64_decode(b->enc, b->encsz, b->reg, &b->regsz, flags); in codec_bench_dec()
|
/third_party/node/test/cctest/ |
H A D | test_base64.cc | 8 using node::base64_decode; 66 base64_decode(buffer, len, base64_string, strlen(base64_string)); in TEST()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | base64.h | 14 unsigned char * base64_decode(const unsigned char *src, size_t len,
|
H A D | utils_module_tests.c | 321 res = base64_decode((const unsigned char *) "", 0, &res_len); in base64_tests() 327 res = base64_decode((const unsigned char *) "a", 1, &res_len); in base64_tests() 333 res = base64_decode((const unsigned char *) "====", 4, &res_len); in base64_tests() 339 res = base64_decode((const unsigned char *) "PQ==", 4, &res_len); in base64_tests() 344 res = base64_decode((const unsigned char *) "P.Q-=!=*", 8, &res_len); in base64_tests()
|
H A D | base64.c | 183 * base64_decode - Base64 decode 192 unsigned char * base64_decode(const unsigned char *src, size_t len, in base64_decode() function
|
H A D | xml_libxml2.c | 412 ret = base64_decode((unsigned char *) txt, strlen(txt), &len); in xml_node_get_base64_text()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | base64.h | 14 unsigned char * base64_decode(const char *src, size_t len, size_t *out_len);
|
H A D | utils_module_tests.c | 322 res = base64_decode("", 0, &res_len); in base64_tests() 328 res = base64_decode("a", 1, &res_len); in base64_tests() 334 res = base64_decode("====", 4, &res_len); in base64_tests() 340 res = base64_decode("PQ==", 4, &res_len); in base64_tests() 345 res = base64_decode("P.Q-=!=*", 8, &res_len); in base64_tests()
|
H A D | base64.c | 190 * base64_decode - Base64 decode 199 unsigned char * base64_decode(const char *src, size_t len, size_t *out_len) in base64_decode() function
|
H A D | json.c | 542 buf = base64_decode(token->string, os_strlen(token->string), &buflen); in json_get_member_base64()
|
/third_party/node/src/ |
H A D | base64.h | 40 size_t base64_decode(char* const dst, const size_t dstlen,
|
H A D | base64-inl.h | 121 size_t base64_decode(char* const dst, const size_t dstlen,
|
H A D | string_bytes.cc | 353 nbytes = base64_decode(buf, buflen, ext->data(), ext->length()); in Write() 356 nbytes = base64_decode(buf, buflen, *value, value.length()); in Write()
|
/third_party/node/deps/base64/base64/include/ |
H A D | libbase64.h | 111 int BASE64_EXPORT base64_decode
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
H A D | tlsv1_cred.c | 133 der = base64_decode((const char *) pos, end - pos, &der_len); in tlsv1_add_cert() 296 der = base64_decode((const char *) pos, end - pos, &der_len); in tlsv1_set_key_pem() 324 der = base64_decode((const char *) pos, end - pos, &der_len); in tlsv1_set_key_enc_pem() 1161 der = base64_decode((const char *) pos, end - pos, &der_len); in tlsv1_set_dhparams_blob()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/ |
H A D | est.c | 161 pkcs7 = base64_decode(resp, resp_len, &pkcs7_len); in est_load_cacerts() 642 attrs = base64_decode(resp, resp_len, &attrs_len); in est_build_csr() 736 pkcs7 = base64_decode(resp, resp_len, &pkcs7_len); in est_simple_enroll()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/ |
H A D | est.c | 161 pkcs7 = base64_decode((unsigned char *) resp, resp_len, &pkcs7_len); in est_load_cacerts() 642 attrs = base64_decode((unsigned char *) resp, resp_len, in est_build_csr() 737 pkcs7 = base64_decode((unsigned char *) resp, resp_len, &pkcs7_len); in est_simple_enroll()
|
/third_party/node/deps/base64/base64/lib/ |
H A D | lib.c | 136 base64_decode in base64_decode() function
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
H A D | upnp_xml.c | 238 decoded = base64_decode((unsigned char *) msg, os_strlen(msg), &len); in xml_get_base64_item()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
H A D | upnp_xml.c | 238 decoded = base64_decode(msg, os_strlen(msg), &len); in xml_get_base64_item()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
H A D | tlsv1_cred.c | 133 der = base64_decode(pos, end - pos, &der_len); in tlsv1_add_cert() 296 der = base64_decode(pos, end - pos, &der_len); in tlsv1_set_key_pem() 324 der = base64_decode(pos, end - pos, &der_len); in tlsv1_set_key_enc_pem() 1228 der = base64_decode(pos, end - pos, &der_len); in tlsv1_set_dhparams_blob()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | sae_pk.c | 491 der = base64_decode(pos, b_len, &der_len); in sae_parse_pk() 508 der = base64_decode(pos2, os_strlen(pos2), &der_len); in sae_parse_pk()
|