Searched defs:Base64 (Results 1 - 16 of 16) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
H A DBase64.java11 * Basic Base64 Support.
16 public class Base64 class
/external/okhttp/src/main/java/libcore/io/
H A DBase64.java28 * <a href="http://www.ietf.org/rfc/rfc2045.txt">Base64</a> encoder/decoder.
31 public final class Base64 { class
32 private Base64() { method in class:Base64
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DBase64.java7 public class Base64 class
/external/openssh/openbsd-compat/
H A Dbase64.c65 static const char Base64[] = variable
88 Table 1: The Base64 Alphabet
154 target[datalength++] = Base64[output[0]];
155 target[datalength++] = Base64[output[1]];
156 target[datalength++] = Base64[output[2]];
157 target[datalength++] = Base64[output[3]];
173 target[datalength++] = Base64[output[0]];
174 target[datalength++] = Base64[output[1]];
178 target[datalength++] = Base64[output[2]];
213 pos = strchr(Base64, c
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DBase64.java21 public class Base64 class
/external/chromium/third_party/libjingle/source/talk/base/
H A Dbase64.h20 class Base64 class in namespace:talk_base
/external/apache-http/src/org/apache/commons/codec/binary/
H A DBase64.java25 * Provides Base64 encoding and decoding as defined by RFC 2045.
27 * <p>This class implements section <cite>6.8. Base64 Content-Transfer-Encoding</cite>
34 * @version $Id: Base64.java,v 1.20 2004/05/24 00:21:24 ggregory Exp $
36 public class Base64 implements BinaryEncoder, BinaryDecoder { class in inherits:BinaryEncoder,BinaryDecoder
146 * only valid characters within the Base64 alphabet.
149 * @return true if all bytes are valid characters in the Base64
175 * @return Base64 characters
186 * @return Base64 characters chunked in 76 character blocks
207 throw new DecoderException("Parameter supplied to Base64 decode is not a byte[]");
214 * characters in the Base64 alphabe
[all...]
/external/mdnsresponder/mDNSCore/
H A DDNSDigest.c1137 static const char Base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; variable
1174 pos = mDNSstrchr(Base64, ch);
1183 target[tarindex] = (mDNSu8)((pos - Base64) << 2);
1191 target[tarindex] |= (pos - Base64) >> 4;
1192 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x0f) << 4);
1201 target[tarindex] |= (pos - Base64) >> 2;
1202 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x03) << 6);
1211 target[tarindex] |= (pos - Base64);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf.identity_3.1.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.security_1.0.200.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 4679 milliseconds