Searched defs:decode (Results 26 - 50 of 141) sorted by relevance

123456

/external/dropbear/libtomcrypt/src/pk/dsa/
H A Ddsa_decrypt_key.c37 ltc_asn1_list decode[3]; local
49 /* decode to find out hash */
50 LTC_SET_ASN1(decode, 0, LTC_ASN1_OBJECT_IDENTIFIER, hashOID, sizeof(hashOID)/sizeof(hashOID[0]));
52 if ((err = der_decode_sequence(in, inlen, decode, 1)) != CRYPT_OK) {
56 hash = find_hash_oid(hashOID, decode[0].size);
81 LTC_SET_ASN1(decode, 1, LTC_ASN1_INTEGER, g_pub, 1UL);
82 LTC_SET_ASN1(decode, 2, LTC_ASN1_OCTET_STRING, skey, MAXBLOCKSIZE);
85 if ((err = der_decode_sequence(in, inlen, decode, 3)) != CRYPT_OK) {
101 if (decode[2].size > y) {
107 if (*outlen < decode[
[all...]
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_decrypt_key.c43 ltc_asn1_list decode[3]; local
55 /* decode to find out hash */
56 LTC_SET_ASN1(decode, 0, LTC_ASN1_OBJECT_IDENTIFIER, hashOID, sizeof(hashOID)/sizeof(hashOID[0]));
58 if ((err = der_decode_sequence(in, inlen, decode, 1)) != CRYPT_OK) {
62 hash = find_hash_oid(hashOID, decode[0].size);
85 LTC_SET_ASN1(decode, 1, LTC_ASN1_OCTET_STRING, pub_expt, ECC_BUF_SIZE);
86 LTC_SET_ASN1(decode, 2, LTC_ASN1_OCTET_STRING, skey, MAXBLOCKSIZE);
89 if ((err = der_decode_sequence(in, inlen, decode, 3)) != CRYPT_OK) {
94 if ((err = ecc_import(decode[1].data, decode[
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DStringEncoder.java38 * When decoded with this class' <code>decode</code> method
104 public static byte[] decode(String s) { method in class:StringEncoder
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessageDecoder.java35 * given message if this class can't decode it.
37 public static HttpResponseMessage decode(HttpResponseMessage message) method in class:HttpMessageDecoder
/external/smack/src/org/jivesoftware/smack/util/
H A DBase32Encoder.java44 public String decode(String str) { method in class:Base32Encoder
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DBase64.java185 public static final byte[] decode(byte[] src) throws IllegalArgumentException method in class:Base64
247 public static final String decode(String src) method in class:Base64
249 return new String(decode(src.getBytes()));
/external/libvorbis/doc/
H A D01-introduction.tex12 understanding of the Vorbis decode process, which is
40 encoder and simple, low-complexity decoder. Vorbis decode is
62 end before or after packet decode expects.
91 flag in each audio packet, or begin decode at any frame in the stream
96 Vorbis \emph{can} initiate decode at any arbitrary packet within a
101 Thus, Vorbis headers are both required for decode to begin and
116 The Vorbis format is well-defined by its decode specification; any
124 Although Vorbis decode is computationally simple, it may still run
127 `full' decode specification yet still be certified compliant. These
134 component abstractions that perform specific functions in the decode
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DCertificateStub.java52 * @see java.security.Certificate#decode(java.io.InputStream)
54 public void decode(InputStream stream) throws KeyException, method in class:CertificateStub
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java130 public byte[] decode(byte[] array) throws DecoderException { method in class:Hex
148 public Object decode(Object object) throws DecoderException { method in class:Hex
H A DBinaryCodec.java109 * @see org.apache.commons.codec.Decoder#decode(java.lang.Object)
111 public Object decode(Object ascii) throws DecoderException { method in class:BinaryCodec
133 * @see org.apache.commons.codec.Decoder#decode(Object)
135 public byte[] decode(byte[] ascii) { method in class:BinaryCodec
145 * @see org.apache.commons.codec.Decoder#decode(Object)
/external/apache-http/src/org/apache/commons/codec/net/
H A DURLCodec.java205 public byte[] decode(byte[] bytes) throws DecoderException { method in class:URLCodec
264 public String decode(String pString, String charset) method in class:URLCodec
270 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
285 public String decode(String pString) throws DecoderException { method in class:URLCodec
290 return decode(pString, getDefaultCharset());
330 public Object decode(Object pObject) throws DecoderException { method in class:URLCodec
334 return decode((byte[])pObject);
336 return decode((String)pObject);
H A DQCodec.java223 * A decoder exception is thrown if a failure condition is encountered during the decode process.
225 public String decode(String pString) throws DecoderException { method in class:QCodec
268 * A decoder exception is thrown if a failure condition is encountered during the decode process.
270 public Object decode(Object pObject) throws DecoderException { method in class:QCodec
274 return decode((String) pObject);
H A DQuotedPrintableCodec.java229 public byte[] decode(byte[] bytes) throws DecoderException { method in class:QuotedPrintableCodec
275 public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingException { method in class:QuotedPrintableCodec
279 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
295 public String decode(String pString) throws DecoderException { method in class:QuotedPrintableCodec
300 return decode(pString, getDefaultCharset());
341 public Object decode(Object pObject) throws DecoderException { method in class:QuotedPrintableCodec
345 return decode((byte[]) pObject);
347 return decode((String) pObject);
/external/apache-http/src/org/apache/http/client/utils/
H A DURLEncodedUtils.java141 final String name = decode(nameValue[0], encoding);
144 value = decode(nameValue[1], encoding);
173 private static String decode (final String content, final String encoding) { method in class:URLEncodedUtils
175 return URLDecoder.decode(content,
/external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/bmp/
H A DBMPImageDecoder.cpp65 decode(true);
83 decode(false);
95 void BMPImageDecoder::decode(bool onlySize) function in class:WebCore::BMPImageDecoder
100 // If we couldn't decode the image but we've received all the data, decoding
/external/chromium_org/third_party/WebKit/Source/modules/encoding/
H A DTextDecoder.cpp74 String TextDecoder::decode(ArrayBufferView* input, const Dictionary& options, ExceptionState& es) function in class:WebCore::TextDecoder
88 String s = m_codec->decode(start, length, flush, m_fatal, sawError);
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAsyncAudioDecoder.cpp67 // Asynchronously decode in this thread.
88 decodingTask.leakPtr()->decode();
105 void AsyncAudioDecoder::DecodingTask::decode() function in class:WebCore::AsyncAudioDecoder::DecodingTask
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodec.h66 String decode(const char* str, size_t length, bool flush = false) function in class:WTF::TextCodec
69 return decode(str, length, flush, false, ignored);
72 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) = 0;
H A DTextCodecUTF16.cpp69 String TextCodecUTF16::decode(const char* bytes, size_t length, bool, bool, bool&) function in class:WTF::TextCodecUTF16
H A DTextEncoding.h70 String decode(const char* str, size_t length) const function in class:WTF::TextEncoding
73 return decode(str, length, false, ignored);
75 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
H A DTextCodecUserDefined.cpp53 String TextCodecUserDefined::decode(const char* bytes, size_t length, bool, bool, bool&) function in class:WTF::TextCodecUserDefined
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DDecodeHandler.java53 if (message.what == R.id.decode) {
54 decode((byte[]) message.obj, message.arg1, message.arg2);
63 * reuse the same reader objects from one decode to the next.
69 private void decode(byte[] data, int width, int height) { method in class:DecodeHandler
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DSignatureSpi.java255 public BigInteger[] decode( method in class:SignatureSpi.StdDSAEncoder
313 public BigInteger[] decode( method in class:SignatureSpi.CVCDSAEncoder
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DBase64Encoder.java123 * decode the base 64 encoded byte data writing it to the given output stream,
128 public int decode( method in class:Base64Encoder
200 * decode the base 64 encoded String data writing it to the given output stream,
205 public int decode( method in class:Base64Encoder
/external/chromium_org/third_party/simplejson/
H A Ddecoder.py21 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
101 on attempt to decode an invalid string. If strict is False then literal
359 the result of any object literal decode with an ordered list of pairs.
401 def decode(self, s, _w=WHITESPACE.match): member in class:JSONDecoder
419 This can be used to decode a JSON document from a string that may

Completed in 1163 milliseconds

123456