Home
last modified time | relevance | path

Searched refs:base64_decode (Results 1 – 18 of 18) sorted by relevance

/external/grpc-grpc/test/core/transport/chttp2/
Dbin_decoder_test.cc56 static grpc_slice base64_decode(const char* s) { in base64_decode() function
111 EXPECT_SLICE_EQ("", base64_decode("")); in main()
113 EXPECT_SLICE_EQ("f", base64_decode("Zg==")); in main()
115 EXPECT_SLICE_EQ("fo", base64_decode("Zm8=")); in main()
117 EXPECT_SLICE_EQ("foo", base64_decode("Zm9v")); in main()
119 EXPECT_SLICE_EQ("foob", base64_decode("Zm9vYg==")); in main()
121 EXPECT_SLICE_EQ("fooba", base64_decode("Zm9vYmE=")); in main()
123 EXPECT_SLICE_EQ("foobar", base64_decode("Zm9vYmFy")); in main()
125 EXPECT_SLICE_EQ("\xc0\xc1\xc2\xc3\xc4\xc5", base64_decode("wMHCw8TF")); in main()
128 EXPECT_SLICE_EQ("", base64_decode("a")); in main()
[all …]
/external/python/cpython2/Lib/encodings/
Dbase64_codec.py27 def base64_decode(input,errors='strict'): function
50 return base64_decode(input,errors)
74 decode=base64_decode,
/external/python/cpython3/Lib/encodings/
Dbase64_codec.py17 def base64_decode(input, errors='strict'): function
25 return base64_decode(input, errors)
49 decode=base64_decode,
/external/image_io/src/extras/
Dbase64_decoder_data_destination.cc31 static size_t base64_decode(const Byte* src, size_t len, Byte* out, in base64_decode() function
125 total_bytes_decoded = base64_decode(leftover_and_stolen_bytes.data(), in Transfer()
141 size_t number_bytes_decoded = base64_decode( in Transfer()
/external/wpa_supplicant_8/src/utils/
Dbase64.h14 unsigned char * base64_decode(const unsigned char *src, size_t len,
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()
Dbase64.c192 unsigned char * base64_decode(const unsigned char *src, size_t len, in base64_decode() function
Dxml_libxml2.c412 ret = base64_decode((unsigned char *) txt, strlen(txt), &len); in xml_node_get_base64_text()
/external/wpa_supplicant_8/src/wps/
Dupnp_xml.c238 decoded = base64_decode((unsigned char *) msg, os_strlen(msg), &len); in xml_get_base64_item()
/external/wpa_supplicant_8/hs20/client/
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()
/external/wpa_supplicant_8/src/tls/
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()
/external/wpa_supplicant_8/hs20/server/www/
Dest.php148 $req = base64_decode($data);
/external/ipsec-tools/src/racoon/
Dcrypto_openssl.h218 vchar_t *base64_decode(char *in, long inlen);
Dcrypto_openssl.c2618 base64_decode(char *in, long inlen) in base64_decode() function
2766 binbuf = base64_decode(in + 2, strlen(in + 2)); in base64_pubkey2rsa()
/external/wpa_supplicant_8/src/eap_server/
Dtncs.c681 decoded = base64_decode((unsigned char *) pos, os_strlen(pos), in tncs_get_base64()
/external/wpa_supplicant_8/src/eap_peer/
Dtncc.c632 decoded = base64_decode((unsigned char *) pos, os_strlen(pos), in tncc_get_base64()
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig_file.c338 blob->data = base64_decode(encoded, encoded_len, &blob->len); in wpa_config_read_blob()
/external/wpa_supplicant_8/src/common/
Ddpp.c839 data = base64_decode((const unsigned char *) info, end - info, in dpp_parse_uri_pk()