HomeSort by relevance Sort by last modified time
    Searched defs:base64 (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/
smtp.py 27 import base64 namespace
41 base64.b64encode(oauth2.build_xoauth_string(url, consumer, token)))
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharsetEncoder.java 53 private final Base64Util base64; field in class:UTF7StyleCharsetEncoder
68 UTF7StyleCharsetEncoder(UTF7StyleCharset cs, Base64Util base64, boolean strict) {
71 this.base64 = base64;
110 out.put(base64.getChar(sextet));
184 out.put(base64.getChar(sextet));
185 if (base64.contains(ch) || ch == unshift || strict)
212 out.put(base64.getChar(sextet));
UTF7StyleCharset.java 45 Base64Util base64; field in class:UTF7StyleCharset
66 this.base64 = new Base64Util(alphabet);
83 return new UTF7StyleCharsetDecoder(this, base64, strict);
91 return new UTF7StyleCharsetEncoder(this, base64, strict);
UTF7StyleCharsetDecoder.java 41 private final Base64Util base64; field in class:UTF7StyleCharsetDecoder
51 UTF7StyleCharsetDecoder(UTF7StyleCharset cs, Base64Util base64, boolean strict) {
53 this.base64 = base64;
122 int sextet = base64.getSextet(lastRead);
178 * @return True if there are base64 encoded characters waiting to be written
  /external/webkit/Source/WebCore/platform/network/
DataURL.cpp 30 #include "Base64.h"
55 bool base64 = mediaType.endsWith(";base64", false); local
56 if (base64)
70 if (base64) {
  /external/openssl/apps/
rand.c 71 * -base64 - base64 encode output
84 int base64 = 0; local
128 else if (strcmp(argv[i], "-base64") == 0)
130 if (!base64)
131 base64 = 1;
157 if (hex && base64)
172 BIO_printf(bio_err, "-base64 - base64 encode output\n");
204 if (base64)
    [all...]
enc.c 116 int enc=1,printkey=0,i,base64=0; local
144 if (strcmp(pname,"base64") == 0)
145 base64=1;
153 if (!do_zlib && !base64 && (cipher == NULL)
156 if (!base64 && (cipher == NULL) && (strcmp(pname,"enc") != 0))
210 base64=1;
211 else if (strcmp(*argv,"-base64") == 0)
212 base64=1;
301 BIO_printf(bio_err,"%-14s base64 encode/decode, depending on encryption flag\n","-a/-base64");
    [all...]
  /external/skia/src/animator/
SkDrawBitmap.h 74 SkBase64 base64; member in class:SkImage
SkMemberInfo.cpp 59 case SkType_Base64: // assume base64 data is always const, copied by ref
333 SkBase64 base64; local
334 base64.decode(rawValue, rawValueLen);
335 *(SkBase64* ) untypedStorage = base64;
  /external/chromium/chrome/browser/ui/gtk/
certificate_dialogs.cc 12 #include "base/base64.h"
60 std::string base64; local
62 x509_certificate_model::GetDerString(cert), &base64)) {
63 LOG(ERROR) << "base64 encoding error";
67 WrapAt64(base64) +
  /external/chromium/net/tools/testserver/
xmppserver_test.py 10 import base64 namespace
125 auth_string = base64.b64encode('\0%s\0bar' % username_domain)
xmppserver.py 14 import base64 namespace
290 username_password = base64.b64decode(encoded_username_password)
testserver.py 17 import base64 namespace
744 old_text = base64.urlsafe_b64decode(old_text_b64)
745 new_text = base64.urlsafe_b64decode(new_text_b64)
873 userpass = base64.b64decode(b64str)
    [all...]
  /external/openssl/crypto/evp/
bio_b64.c 89 EVP_ENCODE_CTX base64; member in struct:b64_struct
96 BIO_TYPE_BASE64,"base64 encoding",
163 EVP_DecodeInit(&(ctx->base64));
236 * base64 encoded stuff. */
244 k=EVP_DecodeUpdate(&(ctx->base64),
248 EVP_DecodeInit(&ctx->base64);
259 EVP_DecodeInit(&ctx->base64);
339 i=EVP_DecodeUpdate(&(ctx->base64),
389 EVP_EncodeInit(&(ctx->base64));
459 EVP_EncodeUpdate(&(ctx->base64),
    [all...]
  /external/webkit/Source/WebKit/android/benchmark/
Intercept.cpp 29 #include "Base64.h"
69 String base64 = data.substring(index + 1); local
71 bool decode = mediaType.endsWith(";base64", false);
73 mediaType = mediaType.left(mediaType.length() - 7); // 7 for base64;
85 base64 = decodeURLEscapeSequences(base64);
89 // FIXME: This is annoying. WebCore's Base64 decoder chokes on spaces.
94 CString str = base64.latin1();
109 base64 = decodeURLEscapeSequences(base64, TextEncoding(charset))
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
mock_drt.py 35 import base64 namespace
217 self._stdout.write('Content-Transfer-Encoding: base64\n')
218 output = base64.b64encode(actual_audio)
test.py 33 import base64 namespace
118 actual_audio=base64.b64encode('audio_fail-wav'), expected_audio='audio-wav',
150 actual_audio=base64.b64encode('audio-wav'), expected_audio='audio-wav',
443 audio = base64.b64decode(test.actual_audio)
webkit.py 33 import base64 namespace
493 if self.encoding == 'base64':
494 self.decoded_content = base64.b64decode(content)
  /frameworks/base/core/java/android/net/http/
AndroidHttpClient.java 64 import android.util.Base64;
445 String base64 = Base64.encodeToString(stream.toByteArray(), Base64.NO_WRAP); local
446 builder.insert(0, "echo '" + base64 + "' | base64 -d > /tmp/$$.bin; ");
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
SignedJarBuilder.java 316 BASE64Encoder base64 = new BASE64Encoder(); local
325 main.putValue(DIGEST_MANIFEST_ATTR, base64.encode(md.digest()));
338 sfAttr.putValue(DIGEST_ATTR, base64.encode(md.digest()));
  /build/tools/signapk/
SignApk.java 182 BASE64Encoder base64 = new BASE64Encoder(); local
212 attr.putValue("SHA1-Digest", base64.encode(md.digest()));
266 BASE64Encoder base64 = new BASE64Encoder(); local
275 main.putValue("SHA1-Digest-Manifest", base64.encode(md.digest()));
288 sfAttr.putValue("SHA1-Digest", base64.encode(md.digest()));
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 38 import base64 namespace
403 return base64.b64encode(_sha("%s%s%s" % (cnonce, iso_now, password)).digest()).strip()
455 headers['authorization'] = 'Basic ' + base64.b64encode("%s:%s" % self.credentials).strip()
    [all...]
  /external/ppp/pppd/
eap.c 336 static char base64[] = variable
358 *outp++ = base64[(bs->bs_bits >> 18) & 0x3F];
359 *outp++ = base64[(bs->bs_bits >> 12) & 0x3F];
360 *outp++ = base64[(bs->bs_bits >> 6) & 0x3F];
361 *outp++ = base64[bs->bs_bits & 0x3F];
378 *outp++ = base64[(bs->bs_bits >> 2) & 0x3F];
379 *outp++ = base64[(bs->bs_bits << 4) & 0x3F];
382 *outp++ = base64[(bs->bs_bits >> 10) & 0x3F];
383 *outp++ = base64[(bs->bs_bits >> 4) & 0x3F];
384 *outp++ = base64[(bs->bs_bits << 2) & 0x3F]
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm_unittest.py 32 import base64 namespace
619 expected_contents = base64.b64decode("Q1dTBx0AAAB42itg4GlgYJjGwMDDyODMxMDw34GBgQEAJPQDJA==")
    [all...]
  /external/libxml2/
xmlschemastypes.c 125 xmlSchemaValBase64 base64; member in union:_xmlSchemaVal::__anon7858
    [all...]

Completed in 774 milliseconds

1 2