HomeSort by relevance Sort by last modified time
    Searched refs:data_encoding (Results 1 - 25 of 28) sorted by null

1 2

  /system/webservd/webservd/
fake_encryptor.cc 17 #include <brillo/data_encoding.h>
27 *ciphertext = brillo::data_encoding::Base64Encode(plaintext);
33 return brillo::data_encoding::Base64Decode(ciphertext, plaintext);
  /system/weaved/buffet/
fake_encryptor.cc 19 #include <brillo/data_encoding.h>
27 *ciphertext = brillo::data_encoding::Base64Encode(plaintext);
33 return brillo::data_encoding::Base64Decode(ciphertext, plaintext);
buffet_config_unittest.cc 20 #include <brillo/data_encoding.h>
95 *ciphertext = brillo::data_encoding::Base64Encode(plaintext);
101 brillo::data_encoding::Base64Decode(ciphertext, plaintext);
  /external/libbrillo/brillo/
url_utils.h 14 #include <brillo/data_encoding.h>
48 BRILLO_EXPORT data_encoding::WebParamList GetQueryStringParameters(
56 const data_encoding::WebParamList& params,
77 const data_encoding::WebParamList& params) WARN_UNUSED_RESULT;
data_encoding_unittest.cc 5 #include <brillo/data_encoding.h>
13 namespace data_encoding { namespace in namespace:brillo
15 TEST(data_encoding, UrlEncoding) {
27 TEST(data_encoding, WebParamsEncoding) {
42 TEST(data_encoding, Base64Encode) {
70 TEST(data_encoding, Base64EncodeWrapLines) {
99 TEST(data_encoding, Base64Decode) {
146 } // namespace data_encoding
url_utils.cc 98 data_encoding::WebParamList url::GetQueryStringParameters(
104 return data_encoding::WebParamsDecode(query_string);
112 std::string url::GetQueryStringValue(const data_encoding::WebParamList& params,
141 const data_encoding::WebParamList& params) {
153 result += data_encoding::WebParamsEncode(params);
data_encoding.cc 5 #include <brillo/data_encoding.h>
43 namespace data_encoding { namespace in namespace:brillo
153 } // namespace data_encoding
data_encoding.h 16 namespace data_encoding { namespace in namespace:brillo
79 } // namespace data_encoding
  /external/libweave/src/
data_encoding_unittest.cc 5 #include "src/data_encoding.h"
15 TEST(data_encoding, UrlEncoding) {
27 TEST(data_encoding, WebParamsEncoding) {
42 TEST(data_encoding, Base64Encode) {
70 TEST(data_encoding, Base64EncodeWrapLines) {
99 TEST(data_encoding, Base64Decode) {
  /system/connectivity/shill/
crypto_des_cbc.cc 23 #include <brillo/data_encoding.h>
60 if (!brillo::data_encoding::Base64Decode(b64_ciphertext, &decoded_data)) {
crypto_util_proxy.cc 27 #include <brillo/data_encoding.h>
95 if (!brillo::data_encoding::Base64Decode(signed_data, &decoded_signed_data)) {
132 if (!brillo::data_encoding::Base64Decode(public_key, &decoded_public_key)) {
406 brillo::data_encoding::Base64Encode(response.encrypted_data()));
  /system/update_engine/common/
hash_calculator.cc 23 #include <brillo/data_encoding.h>
84 hash_ = brillo::data_encoding::Base64Encode(raw_hash_.data(),
utils.cc 54 #include <brillo/data_encoding.h>
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
codecs.py 743 data_encoding = 'unknown' variable in class:StreamRecoder
890 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
896 to the given data_encoding and then written to the original
901 passed back to the caller as string using data_encoding.
903 If file_encoding is not given, it defaults to data_encoding.
910 .data_encoding and .file_encoding which reflect the given
916 file_encoding = data_encoding
917 data_info = lookup(data_encoding)
922 sr.data_encoding = data_encoding
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
codecs.py 743 data_encoding = 'unknown' variable in class:StreamRecoder
890 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
896 to the given data_encoding and then written to the original
901 passed back to the caller as string using data_encoding.
903 If file_encoding is not given, it defaults to data_encoding.
910 .data_encoding and .file_encoding which reflect the given
916 file_encoding = data_encoding
917 data_info = lookup(data_encoding)
922 sr.data_encoding = data_encoding
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codecs.py 743 data_encoding = 'unknown' variable in class:StreamRecoder
890 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
896 to the given data_encoding and then written to the original
901 passed back to the caller as string using data_encoding.
903 If file_encoding is not given, it defaults to data_encoding.
910 .data_encoding and .file_encoding which reflect the given
916 file_encoding = data_encoding
917 data_info = lookup(data_encoding)
922 sr.data_encoding = data_encoding
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codecs.py 743 data_encoding = 'unknown' variable in class:StreamRecoder
890 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
896 to the given data_encoding and then written to the original
901 passed back to the caller as string using data_encoding.
903 If file_encoding is not given, it defaults to data_encoding.
910 .data_encoding and .file_encoding which reflect the given
916 file_encoding = data_encoding
917 data_info = lookup(data_encoding)
922 sr.data_encoding = data_encoding
    [all...]
  /system/connectivity/shill/vpn/
openvpn_management_server.cc 27 #include <brillo/data_encoding.h>
308 string b64_password(brillo::data_encoding::Base64Encode(password));
309 string b64_otp(brillo::data_encoding::Base64Encode(otp));
  /system/update_engine/payload_generator/
payload_signer.cc 25 #include <brillo/data_encoding.h>
516 *out_signature = brillo::data_encoding::Base64Encode(signature);
548 brillo::data_encoding::Base64Encode(file_hash));
550 brillo::data_encoding::Base64Encode(metadata_hash));
  /external/libbrillo/brillo/http/
http_utils.cc 13 #include <brillo/data_encoding.h>
242 std::string encoded_data = brillo::data_encoding::WebParamsEncode(data);
271 std::string encoded_data = brillo::data_encoding::WebParamsEncode(data);
http_transport_fake.cc 229 auto fields = brillo::data_encoding::WebParamsDecode(GetDataAsString());
  /external/libpng/
pngread.c 2073 unsigned int data_encoding = P_NOTSET; \/* Encoding libpng must produce *\/ local
    [all...]
  /external/pdfium/third_party/lpng_v163/
pngread.c 1956 unsigned int data_encoding = E_NOTSET; \/* Encoding libpng must produce *\/ local
    [all...]
  /system/tpm/attestation/server/
attestation_service_test.cc 24 #include <brillo/data_encoding.h>
99 pem += brillo::data_encoding::Base64EncodeWrapLines("fake_cert");
101 pem += brillo::data_encoding::Base64EncodeWrapLines("fake_ca_cert");
103 pem += brillo::data_encoding::Base64EncodeWrapLines("fake_ca_cert2");
    [all...]
  /system/update_engine/payload_consumer/
delta_performer.cc 34 #include <brillo/data_encoding.h>
373 string sha256 = brillo::data_encoding::Base64Encode(info.hash());
    [all...]

Completed in 1320 milliseconds

1 2