HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 101 - 125 of 1247) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_v1_5_decode.c 20 /** @brief PKCS #1 v1.5 decode.
22 * @param msg The encoded data to decode
  /external/dropbear/libtomcrypt/src/pk/rsa/
rsa_decrypt_key.c 81 /* rsa decode the packet */
89 /* now OAEP decode the packet */
rsa_verify_hash.c 80 /* RSA decode it */
94 /* PSS decode and verify it */
97 /* PKCS #1 v1.5 decode it */
122 /* now we must decode out[0...outlen-1] using ASN.1, test the OID and then test the hash */
  /external/libvpx/vp8/common/
duck_io.h 58 const char *decode; member in struct:sal_err_map_temp
84 return (char *) g_sal_err_map[t].decode;
  /external/skia/src/images/
fpdfemb_ext.h 60 void (*Decode)(void* context, unsigned char* dest_buf, int pitch,
72 void (*Decode)(unsigned long width, unsigned long height, const unsigned char* src_buf,
  /external/webkit/WebCore/platform/text/mac/
TextCodecMac.h 46 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
50 OSStatus decode(const unsigned char* inputBuffer, int inputBufferLength, int& inputLength,
  /frameworks/base/include/media/
IMediaPlayerService.h 48 virtual sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) = 0;
49 virtual sp<IMemory> decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) = 0;
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
BerTlv.java 63 * @param data A byte array to decode from
67 public static BerTlv decode(byte[] data) throws ResultException { method in class:BerTlv
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Any.java 65 // Decode
79 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Any
ASN1Boolean.java 65 // Decode
69 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Boolean
ASN1Enumerated.java 65 // Decode
69 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Enumerated
ASN1OctetString.java 65 // Decode
69 public Object decode(BerInputStream in) throws IOException { method in class:ASN1OctetString
ASN1SequenceOf.java 45 // Decode
49 public Object decode(BerInputStream in) throws IOException { method in class:ASN1SequenceOf
ASN1SetOf.java 45 // Decode
48 public Object decode(BerInputStream in) throws IOException { method in class:ASN1SetOf
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
SubjectKeyIdentifier.java 53 public static SubjectKeyIdentifier decode(byte[] encoding) method in class:SubjectKeyIdentifier
56 ASN1OctetString.getInstance().decode(encoding));
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
CertificateVerify.java 59 "DECODE ERROR: incorrect CertificateVerify");
63 "DECODE ERROR: incorrect CertificateVerify");
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
Charset_AbstractTest.java 144 static void decode (byte[] input, char[] expectedOutput) throws CharacterCodingException { method in class:Charset_AbstractTest
148 outputCB = decoder.decode(inputBB);
178 decode(testBytes, testChars); method
212 CharBuffer outputCB = decoder.decode(intermediateBB);
214 assertEqualCBs("decode(encode(A)) must be identical with A = " + code,
221 fail("failed to decode(encode(" + code + "))");
245 CharBuffer outputCB = decoder.decode(intermediateBB);
247 assertEqualCBs("decode(encode(A)) must be identical with A!",
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
CertificateStub.java 53 * @see java.security.Certificate#decode(java.io.InputStream)
55 public void decode(InputStream stream) throws KeyException, method in class:CertificateStub
  /frameworks/base/core/java/android/util/
Base64.java 76 * Encode/decode another block of input data. this.output is
103 * Decode the Base64-encoded data in input and return the data in
109 * @param str the input String to decode, which is converted to
112 * Pass {@code DEFAULT} to decode standard Base64.
117 public static byte[] decode(String str, int flags) { method in class:Base64
118 return decode(str.getBytes(), flags);
122 * Decode the Base64-encoded data in input and return the data in
128 * @param input the input array to decode
130 * Pass {@code DEFAULT} to decode standard Base64.
135 public static byte[] decode(byte[] input, int flags) method in class:Base64
155 public static byte[] decode(byte[] input, int offset, int len, int flags) { method in class:Base64
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
LongTest.java 85 * @tests java.lang.Long#decode(java.lang.String)
90 method = "decode",
95 // java.lang.Long.decode(java.lang.String)
96 assertEquals("Returned incorrect value for hex string", 255L, Long.decode(
98 assertEquals("Returned incorrect value for dec string", -89000L, Long.decode(
100 assertEquals("Returned incorrect value for 0 decimal", 0, Long.decode("0")
102 assertEquals("Returned incorrect value for 0 hex", 0, Long.decode("0x0")
106 Long.decode("-9223372036854775808").longValue() == 0x8000000000000000L);
109 Long.decode("-0x8000000000000000").longValue() == 0x8000000000000000L);
112 Long.decode("9223372036854775807").longValue() == 0x7fffffffffffffffL)
    [all...]
  /dalvik/libdex/
DexClass.h 71 * decode process.
85 * decode process.
134 * decode process.
150 * decode process.
  /dalvik/vm/mterp/armv5te/
OP_PACKED_SWITCH.S 5 * we decode it and hand it off to a helper function.
  /external/apache-http/src/org/apache/commons/codec/
DecoderException.java 20 * Thrown when a Decoder has encountered a failure condition during a decode.
StringDecoder.java 37 String decode(String pString) throws DecoderException; method in interface:StringDecoder
  /external/chromium/third_party/modp_b64/
modp_b64.h 59 * Decode a base64 encoded string
69 * decode
99 * decode 4 chars turn into 3 bytes
144 * base 64 decode a string (self-modifing)

Completed in 935 milliseconds

1 2 3 45 6 7 8 91011>>