HomeSort by relevance Sort by last modified time
    Searched refs:base64 (Results 201 - 225 of 321) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
NettyClientStream.java 129 new AsciiString(defaultPath + "?" + BaseEncoding.base64().encode(requestPayload));
GrpcHttp2HeadersUtils.java 149 * <p>The values of binary headers (with a -bin suffix), are already base64 decoded.
185 ? BaseEncoding.base64().decode(value)
247 // If binary headers, the value is base64 encoded.
  /external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/
OkHttpClientStream.java 141 defaultPath += "?" + BaseEncoding.base64().encode(payload);
  /external/grpc-grpc-java/okhttp/src/test/java/io/grpc/okhttp/
OkHttpClientStreamTest.java 214 + BaseEncoding.base64().encode(msg)));
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 190 return ByteString.of(sha1Bytes).base64();
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/
Util.java 196 return ByteString.of(sha1Bytes).base64();
  /external/protobuf/csharp/src/Google.Protobuf/
ByteString.cs 126 /// Converts this <see cref="ByteString"/> into a standard base64 representation.
128 /// <returns>A base64 representation of this <c>ByteString</c>.</returns>
135 /// Constructs a <see cref="ByteString" /> from the Base64 Encoded String.
  /frameworks/av/drm/mediadrm/plugins/clearkey/default/tests/
InitDataParserUnittest.cpp 21 #include <media/stagefright/foundation/base64.h>
  /frameworks/av/media/libstagefright/
MetaDataUtils.cpp 22 #include <media/stagefright/foundation/base64.h>
232 ALOGE("malformed base64 encoded data.");
  /build/make/tools/releasetools/
sign_target_files_apks 110 import base64
609 old_cert16 = base64.b16encode(
612 new_cert16 = base64.b16encode(
    [all...]
sign_target_files_apks.py 110 import base64
609 old_cert16 = base64.b16encode(
612 new_cert16 = base64.b16encode(
    [all...]
  /external/autotest/client/cros/bluetooth/
bluetooth_device_xmlrpc_server.py 7 import base64
26 """Base64 encodes a dbus byte array for use with the xml rpc proxy."""
27 return base64.standard_b64encode(bytearray(dbus_byte_array))
31 """Base64 decodes a dbus byte array for use with the xml rpc proxy."""
33 bytes = bytearray(base64.standard_b64decode(b64_string))
653 """Base64 encode and json encode the data.
656 @param data: data to be base64 and JSON encoded
658 @return: base64 and JSON encoded data
663 logging.debug('base64 encoded data is %s', b64_encoded)
    [all...]
  /external/python/cpython2/Lib/
ssl.py 146 import base64 # for DER-to-PEM translation
    [all...]
  /external/python/httplib2/tests/
__init__.py 3 import base64
561 decoded = base64.b64decode(data).decode()
658 return base64.b64encode(t + b":" + hashlib.sha1(t + salt).digest()).decode()
  /external/boringssl/src/ssl/test/runner/
runner.go 26 "encoding/base64"
    [all...]
  /external/ImageMagick/coders/
svg.c     [all...]
  /external/python/cpython3/Lib/urllib/
request.py 84 import base64
819 creds = base64.b64encode(user_pass.encode()).decode("ascii")
    [all...]
  /external/python/dateutil/dateutil/test/
test_tz.py 15 import base64
    [all...]
  /external/protobuf/js/binary/
utils_test.js 39 goog.require('goog.crypt.base64');
645 var sourceBase64 = goog.crypt.base64.encodeByteArray(sourceData);
665 // Converting base64-encoded strings into Uint8Arrays should work.
  /art/libdexfile/dex/
dex_file_verifier_test.cc 94 static std::unique_ptr<const DexFile> OpenDexFileBase64(const char* base64,
97 // decode base64
98 CHECK(base64 != nullptr);
100 std::unique_ptr<uint8_t[]> dex_bytes(DecodeBase64(base64, &length));
121 // To generate a base64 encoded Dex file (such as kGoodTestDex, below)
125 // base64 classes.dex >classes.dex.base64
    [all...]
  /external/python/cpython3/Lib/
ssl.py 174 import base64 # for DER-to-PEM translation
    [all...]
  /external/scapy/scapy/layers/tls/
cert.py 29 import base64
72 base64_string = base64.b64encode(der_string)
89 der_string = base64.b64decode(base64_string)
    [all...]
  /external/boringssl/
eureka.mk 49 src/crypto/base64/base64.c\
sources.mk 49 src/crypto/base64/base64.c\
  /external/boringssl/src/include/openssl/
evp.h 69 #include <openssl/base64.h>
    [all...]

Completed in 2265 milliseconds

1 2 3 4 5 6 7 891011>>