Home
last modified time | relevance | path

Searched refs:base64_decode (Results 1 - 25 of 37) sorted by relevance

12

/third_party/python/Lib/encodings/
H A Dbase64_codec.py17 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 Dtest_base64.c41 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 Dcodec_supported.c28 return (base64_decode(a, strlen(a), b, &outlen, flags) != -1); in codec_supported()
H A Dbenchmark.c216 base64_decode(b->enc, b->encsz, b->reg, &b->regsz, flags); in codec_bench_dec()
/third_party/node/test/cctest/
H A Dtest_base64.cc8 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 Dbase64.h14 unsigned char * base64_decode(const unsigned char *src, size_t len,
H A Dutils_module_tests.c321 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 Dbase64.c183 * base64_decode - Base64 decode
192 unsigned char * base64_decode(const unsigned char *src, size_t len, in base64_decode() function
H A Dxml_libxml2.c412 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 Dbase64.h14 unsigned char * base64_decode(const char *src, size_t len, size_t *out_len);
H A Dutils_module_tests.c322 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 Dbase64.c190 * 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 Djson.c542 buf = base64_decode(token->string, os_strlen(token->string), &buflen); in json_get_member_base64()
/third_party/node/src/
H A Dbase64.h40 size_t base64_decode(char* const dst, const size_t dstlen,
H A Dbase64-inl.h121 size_t base64_decode(char* const dst, const size_t dstlen,
H A Dstring_bytes.cc353 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 Dlibbase64.h111 int BASE64_EXPORT base64_decode
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dtlsv1_cred.c133 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 Dest.c161 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 Dest.c161 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 Dlib.c136 base64_decode in base64_decode() function
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dupnp_xml.c238 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 Dupnp_xml.c238 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 Dtlsv1_cred.c133 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 Dsae_pk.c491 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()

Completed in 42 milliseconds

12