Home
last modified time | relevance | path

Searched refs:base64_decode (Results 1 – 24 of 24) 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 char *src, size_t len, size_t *out_len);
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()
Dbase64.c199 unsigned char * base64_decode(const char *src, size_t len, size_t *out_len) in base64_decode() function
Dxml_libxml2.c412 ret = base64_decode(txt, strlen(txt), &len); in xml_node_get_base64_text()
Djson.c542 buf = base64_decode(token->string, os_strlen(token->string), &buflen); in json_get_member_base64()
/external/tpm2-tss/src/tss2-fapi/
Difapi_get_intl_cert.c195 base64_decode(unsigned char* buffer, size_t len, size_t *new_len) in base64_decode() function
355 cert_bin = base64_decode((unsigned char *)cert_start, in ifapi_get_intl_ek_certificate()
/external/wpa_supplicant_8/src/wps/
Dupnp_xml.c238 decoded = base64_decode(msg, os_strlen(msg), &len); in xml_get_base64_item()
/external/wpa_supplicant_8/hs20/client/
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()
/external/wpa_supplicant_8/src/tls/
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()
1228 der = base64_decode((const char *) 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/common/
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()
Ddpp.c348 data = base64_decode(info, end - info, &data_len); in dpp_parse_uri_pk()
2877 return base64_decode((const char *) b64, b64_len, len); in dpp_get_csr_attrs()
Ddpp_crypto.c2972 cp = base64_decode((const char *) utf8, res, &cp_len); in dpp_validate_csr()
/external/protobuf/php/src/Google/Protobuf/Internal/
DMessage.php851 $proto_value = base64_decode($value, true);
1102 $this->setValue(base64_decode($array));
/external/wpa_supplicant_8/src/eap_server/
Dtncs.c681 decoded = base64_decode(pos, os_strlen(pos), decoded_len); in tncs_get_base64()
/external/wpa_supplicant_8/src/eap_peer/
Dtncc.c632 decoded = base64_decode(pos, os_strlen(pos), decoded_len); in tncc_get_base64()
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig_file.c254 blob->data = base64_decode(encoded, encoded_len, &blob->len); in wpa_config_read_blob()
Ddpp_supplicant.c3955 bin = base64_decode(value, os_strlen(value), &bin_len); in wpas_dpp_ca_set()