HomeSort by relevance Sort by last modified time
    Searched refs:base64 (Results 151 - 175 of 295) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/libxml/src/
xmlschemastypes.c 125 xmlSchemaValBase64 base64; member in union:_xmlSchemaVal::__anon18013
    [all...]
  /external/libxml2/
xmlschemastypes.c 125 xmlSchemaValBase64 base64; member in union:_xmlSchemaVal::__anon8812
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
webrequest.js 328 * @param {!string} serverChallenge The server's challenge, as a base64-
346 * @param {!string} serverChallenge The server's challenge, as a base64-
360 * @param {!string} serverChallenge The server's challenge, as a base64-
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib.py 30 import base64 namespace
325 proxy_auth = base64.b64encode(proxy_passwd).strip()
331 auth = base64.b64encode(user_passwd).strip()
415 proxy_auth = base64.b64encode(proxy_passwd).strip()
420 auth = base64.b64encode(user_passwd).strip()
571 # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data
596 if encoding == 'base64':
597 data = base64.decodestring(data)
    [all...]
mimify.py 39 base64_re = re.compile('^content-transfer-encoding:\\s*base64', re.I)
202 import base64 namespace
203 line = base64.decodestring(line)
363 line = line + 'base64\n'
smtplib.py 47 import base64 namespace
562 challenge = base64.decodestring(challenge)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib.py 30 import base64 namespace
325 proxy_auth = base64.b64encode(proxy_passwd).strip()
331 auth = base64.b64encode(user_passwd).strip()
415 proxy_auth = base64.b64encode(proxy_passwd).strip()
420 auth = base64.b64encode(user_passwd).strip()
571 # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data
596 if encoding == 'base64':
597 data = base64.decodestring(data)
    [all...]
mimify.py 39 base64_re = re.compile('^content-transfer-encoding:\\s*base64', re.I)
202 import base64 namespace
203 line = base64.decodestring(line)
363 line = line + 'base64\n'
smtplib.py 47 import base64 namespace
562 challenge = base64.decodestring(challenge)
  /external/chromium_org/content/browser/appcache/
view_appcache_internals_job.cc 10 #include "base/base64.h"
278 GURL DecodeBase64URL(const std::string& base64) {
280 base::Base64Decode(base64, &url);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
driver.py 29 import base64 namespace
521 if self.encoding == 'base64' and self.content is not None:
522 self.decoded_content = base64.b64decode(self.content)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_httpservers.py 10 import base64 namespace
482 base64.b64encode('username:pass')}
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_httpservers.py 10 import base64 namespace
482 base64.b64encode('username:pass')}
  /external/chromium_org/third_party/tlslite/tlslite/utils/
cryptomath.py 13 import base64 namespace
  /external/chromium_org/tools/grit/grit/format/
html_inline.py 16 import base64 namespace
113 inline_data = base64.standard_b64encode(util.ReadFile(filepath, util.BINARY))
117 return '%sdata:%s;base64,%s%s' % (prefix, mimetype, inline_data, suffix)
  /external/smack/src/org/xbill/DNS/
Tokenizer.java 579 * them together, and converts the base64 encoded data to a byte array.
592 throw exception("expected base64 encoded string");
596 byte [] array = base64.fromString(s);
598 throw exception("invalid base64 encoding");
604 * them together, and converts the base64 encoded data to a byte array.
  /frameworks/av/drm/mediadrm/plugins/clearkey/tests/
InitDataParserUnittest.cpp 21 #include <media/stagefright/foundation/base64.h>
  /external/chromium_org/chrome/browser/policy/test/
policy_testserver.py 57 import base64 namespace
108 # Dictionary containing base64-encoded policy signing keys plus per-domain
111 # 'key': <base64-encoded PKCS8-format private key>,
113 # <domain1>: <base64-encdoded SHA256 signature for key + domain1>
114 # <domain2>: <base64-encdoded SHA256 signature for key + domain2>
    [all...]
  /external/chromium_org/components/cloud_devices/tools/prototype/
prototype.py 19 import base64 namespace
851 package = base64.b64decode(data['package'])
887 'package': base64.b64encode(output_package),
  /external/chromium_org/net/tools/testserver/
testserver.py 17 import base64 namespace
106 self.basic_auth_credential = 'Basic ' + base64.b64encode('test:test')
744 # Since the data can be binary, we encode them by base64.
747 post_multipart_base64_encoded[field] = [base64.b64encode(value)
833 old_text = base64.urlsafe_b64decode(old_text_b64)
834 new_text = base64.urlsafe_b64decode(new_text_b64)
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
byte_reader.js 168 * Read as a sequence of bytes, returning them as a single base64 encoded
247 return 'data:image/' + mime + ';base64,' + b64;
449 * Read as a sequence of bytes, returning them as a single base64 encoded
  /external/chromium_org/third_party/boringssl/src/crypto/base64/
base64.c 57 #include <openssl/base64.h>
319 /* There are, at most, two equals signs at the end of base64 data. */
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpResponseCache.java 424 * base64-encoded peerCertificate[0]
425 * base64-encoded peerCertificate[1]
438 * base64-encoded and appear each on their own line. The next line
440 * certificates are also base64-encoded and appear each on their own
542 String line = ByteString.of(bytes).base64();
  /external/chromium-trace/trace-viewer/examples/stream_server/
standalone.py 113 import base64 namespace
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
standalone.py 113 import base64 namespace
    [all...]

Completed in 927 milliseconds

1 2 3 4 5 67 8 91011>>