Searched defs:decode (Results 1 - 25 of 54) sorted by relevance

123

/dalvik/libcore/luni/src/main/java/java/net/
H A DURLDecoder.java30 * This class is used to decode a string which is encoded in the {@code
49 * @deprecated use {@link #decode(String, String)} instead.
52 public static String decode(String s) { method in class:URLDecoder
68 return decode(s, defaultCharset);
89 public static String decode(String s, String enc) method in class:URLDecoder
125 return decode(s, charset);
128 private static String decode(String s, Charset charset) { method in class:URLDecoder
161 CharBuffer cb = charset.decode(ByteBuffer.wrap(buf, 0, len));
H A DURIEncoderDecoder.java184 static String decode(String s) throws UnsupportedEncodingException { method in class:URIEncoderDecoder
/dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/
H A DUrlBase64.java63 public static byte[] decode( method in class:UrlBase64
70 encoder.decode(data, 0, data.length, bOut);
81 * decode the URL safe base 64 encoded byte data writing it to the given output stream,
86 public static int decode( method in class:UrlBase64
91 return encoder.decode(data, 0, data.length, out);
95 * decode the URL safe base 64 encoded String data - whitespace will be ignored.
99 public static byte[] decode( method in class:UrlBase64
106 encoder.decode(data, bOut);
122 public static int decode( method in class:UrlBase64
127 return encoder.decode(dat
[all...]
H A DBase64.java62 * decode the base 64 encoded input data. It is assumed the input data is valid.
66 public static byte[] decode( method in class:Base64
73 encoder.decode(data, 0, data.length, bOut);
84 * decode the base 64 encoded String data - whitespace will be ignored.
88 public static byte[] decode( method in class:Base64
95 encoder.decode(data, bOut);
106 * decode the base 64 encoded String data writing it to the given output stream,
111 public static int decode( method in class:Base64
116 return encoder.decode(data, out);
H A DEncoder.java7 * Encode and decode byte arrays (typically from binary to 7-bit ASCII
14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException; method in interface:Encoder
16 int decode(String data, OutputStream out) throws IOException; method in interface:Encoder
H A DHex.java75 * decode the Hex encoded input data. It is assumed the input data is valid.
79 public static byte[] decode( method in class:Hex
86 encoder.decode(data, 0, data.length, bOut);
97 * decode the Hex encoded String data - whitespace will be ignored.
101 public static byte[] decode( method in class:Hex
108 encoder.decode(data, bOut);
119 * decode the Hex encoded String data writing it to the given output stream,
124 public static int decode( method in class:Hex
129 return encoder.decode(data, out);
H A DHexEncoder.java70 * decode the Hex encoded byte data writing it to the given output stream,
75 public int decode( method in class:HexEncoder
123 * decode the Hex encoded String data writing it to the given output stream,
128 public int decode( method in class:HexEncoder
H A DHexTranslator.java51 public int decode( method in class:HexTranslator
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DBase64.java32 public static byte[] decode(byte[] in) { method in class:Base64
33 return decode(in, in.length);
36 public static byte[] decode(byte[] in, int len) { method in class:Base64
/dalvik/libcore/security/src/main/java/java/security/
H A DCertificate.java50 public void decode(InputStream stream) throws KeyException, IOException; method in interface:Certificate
54 * {@link #decode(InputStream)} method must be able to decode the format
63 * @see #decode(InputStream)
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DASN1Boolean.java69 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Boolean
H A DASN1Enumerated.java69 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Enumerated
H A DASN1Explicit.java75 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Explicit
84 in.content = type.decode(in);
H A DASN1GeneralizedTime.java72 public Object decode(BerInputStream in) throws IOException { method in class:ASN1GeneralizedTime
H A DASN1OctetString.java69 public Object decode(BerInputStream in) throws IOException { method in class:ASN1OctetString
H A DASN1Oid.java69 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Oid
85 // Allocate and decode
H A DASN1OpenType.java48 public Object decode(BerInputStream in) throws IOException { method in class:ASN1OpenType
59 in.content = attr.type.decode(in);
70 public Object decode(BerInputStream in) throws IOException { method in class:ASN1OpenType.Id
71 Object oid = super.decode(in);
H A DASN1Sequence.java48 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Sequence
H A DASN1SequenceOf.java49 public Object decode(BerInputStream in) throws IOException { method in class:ASN1SequenceOf
H A DASN1Set.java51 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Set
H A DASN1SetOf.java48 public Object decode(BerInputStream in) throws IOException { method in class:ASN1SetOf
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
H A DAuthorityKeyIdentifier.java69 public static AuthorityKeyIdentifier decode(byte[] encoding) method in class:AuthorityKeyIdentifier
72 (AuthorityKeyIdentifier) ASN1.decode(encoding);
H A DCRLDistributionPoints.java99 public static CRLDistributionPoints decode(byte[] encoding) method in class:CRLDistributionPoints
101 CRLDistributionPoints cdp = (CRLDistributionPoints) ASN1.decode(encoding);
H A DInfoAccessSyntax.java84 public static InfoAccessSyntax decode(byte[] encoding) throws IOException { method in class:InfoAccessSyntax
85 return ((InfoAccessSyntax) ASN1.decode(encoding));
H A DSubjectKeyIdentifier.java54 public static SubjectKeyIdentifier decode(byte[] encoding) method in class:SubjectKeyIdentifier
57 ASN1OctetString.getInstance().decode(encoding));

Completed in 2728 milliseconds

123