HomeSort by relevance Sort by last modified time
    Searched full:encoded (Results 1 - 25 of 2498) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
LazyDERSequence.java 9 private byte[] encoded; field in class:LazyDERSequence
14 byte[] encoded)
17 this.encoded = encoded;
22 Enumeration en = new LazyDERConstructionEnumeration(encoded);
49 return new LazyDERConstructionEnumeration(encoded);
56 Enumeration en = new LazyDERConstructionEnumeration(encoded);
73 out.writeEncoded(SEQUENCE | CONSTRUCTED, encoded);
LazyDERConstructionEnumeration.java 12 public LazyDERConstructionEnumeration(byte[] encoded)
14 aIn = new ASN1InputStream(encoded, true);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
DerGeneralizedTimeEDTest.java 54 byte[] encoded =
55 new DerOutputStream(gTime, myDate).encoded;
56 String rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8");
61 encoded =
62 new DerOutputStream(gTime, myDate).encoded;
63 rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8");
68 encoded =
69 new DerOutputStream(gTime, myDate).encoded;
    [all...]
AnyTest.java 42 private static byte[] encoded = new byte[] { 0x01, 0x03, 0x11, 0x13, 0x15 }; field in class:AnyTest
45 DerInputStream in = new DerInputStream(encoded);
46 assertTrue(Arrays.equals(encoded, (byte[]) ASN1Any.getInstance()
52 encoded);
53 assertTrue("False", Arrays.equals(encoded, out.encoded));
DerUTCTimeEDTest.java 56 byte[] encoded =
57 new DerOutputStream(uTime, myDate).encoded;
58 String rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8");
66 encoded =
67 new DerOutputStream(uTime, myDate).encoded;
68 rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8");
99 byte[] encoded =
100 new DerOutputStream(uTime, myDate).encoded;
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
PolicyQualifierInfo.java 31 private final byte[] encoded; field in class:PolicyQualifierInfo
36 // DER encoding of the policy qualifier - part of encoded
40 * Creates a new {@code PolicyQualifierInfo} from the specified encoded
43 * @param encoded
44 * the DER encoded policy qualifier.
48 public PolicyQualifierInfo(byte[] encoded) throws IOException {
49 if (encoded == null) {
50 throw new NullPointerException("encoded == null");
52 if (encoded.length == 0) {
53 throw new IOException("encoded.length == 0")
    [all...]
  /external/chromium/chrome/browser/metrics/
metrics_log_unittest.cc 56 std::string encoded; local
58 ASSERT_TRUE(log.GetEncodedLog(WriteInto(&encoded, size + 1), size));
59 TrimWhitespaceASCII(encoded, TRIM_ALL, &encoded);
60 NormalizeBuildtime(&encoded);
63 ASSERT_EQ(expected_output, encoded);
80 std::string encoded; local
82 ASSERT_TRUE(log.GetEncodedLog(WriteInto(&encoded, size + 1), size));
83 TrimWhitespaceASCII(encoded, TRIM_ALL, &encoded);
131 std::string encoded; local
160 std::string encoded; local
190 std::string encoded; local
226 std::string encoded; local
    [all...]
  /cts/tools/dex-tools/
TODO.txt 5 Add support for big endian encoded files
  /external/chromium/base/
base64_unittest.cc 19 std::string encoded, decoded; local
22 ok = base::Base64Encode(kText, &encoded);
24 EXPECT_EQ(kBase64Text, encoded);
26 ok = base::Base64Decode(encoded, &decoded);
  /external/chromium/net/base/
escape_icu.cc 17 // behavior is wrong when the character can't be encoded properly.
18 std::string encoded; local
20 base::OnStringConversionError::SKIP, &encoded))
23 escaped->assign(UTF8ToUTF16(EscapeQueryParamValue(encoded, use_plus)));
  /libcore/luni/src/main/java/java/security/spec/
EncodedKeySpec.java 21 * The abstract key specification for a public or a private key in encoded
25 // Encoded key
29 * Creates a new {@code EncodedKeySpec} with the specified encoded key bytes.
32 * the encoded key bytes.
43 * Returns the encoded key bytes.
45 * @return the encoded key bytes.
56 * Returns the name of the encoding format of this encoded key
59 * @return the name of the encoding format of this encoded key
PKCS8EncodedKeySpec.java 21 * The key specification for an encoded private key in ASN.1 format as defined
27 * Creates a new {@code PKCS8EncodedKeySpec} with the specified encoded key
31 * the encoded key bytes.
39 * Returns a copy of the encoded key bytes.
41 * @return a copy of the encoded key bytes.
49 * Returns the name of the encoding format of this encoded key
X509EncodedKeySpec.java 21 * The key specification of an X.509 encoded key in ASN.1 format.
26 * Creates a new {@code X509EncodedKeySpec} with the specified encoded key
30 * the encoded key bytes.
38 * Returns the encoded key bytes.
40 * @return the encoded key bytes.
48 * Returns the name of the encoding format of this encoded key
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
PublicKeyStub.java 39 byte [] encoded = null; field in class:PublicKeyStub
44 public PublicKeyStub(String algorithm, String format, byte[] encoded) {
47 this.encoded = encoded;
66 * returns encoded
70 return encoded;
PrivateKeyStub.java 36 byte [] encoded = null; field in class:PrivateKeyStub
44 * @param encoded
46 public PrivateKeyStub(String algorithm, String format, byte[] encoded) {
49 this.encoded = encoded;
69 * Returns encoded form
73 return encoded;
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
BerOutputStream.java 33 /** Encoded byte array */
34 public byte[] encoded; field in class:BerOutputStream
39 /** Current encoded length */
42 /** Current encoded content */
46 encoded[offset++] = (byte) tag; //FIXME long form?
55 encoded[offset] = (byte) (numOctets | 0x80);
61 encoded[numOffset - i] = (byte) eLen; //FIXME long value?
65 encoded[offset++] = (byte) length;
70 System.arraycopy(content, 0, encoded, offset, length);
77 encoded[offset] = (byte) bStr.unusedBits
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
PublicKeyStub.java 40 byte [] encoded = null; field in class:PublicKeyStub
45 public PublicKeyStub(String algorithm, String format, byte[] encoded) {
48 this.encoded = encoded;
67 * returns encoded
71 return encoded;
PrivateKeyStub.java 37 byte [] encoded = null; field in class:PrivateKeyStub
45 * @param encoded
47 public PrivateKeyStub(String algorithm, String format, byte[] encoded) {
50 this.encoded = encoded;
70 * Returns encoded form
74 return encoded;
  /external/chromium/net/tools/testserver/
asn1der.py 25 encoded TLV value.
38 encoded TLV value.
49 encoded TLV value.
57 values: the list of values, must be strings holding already encoded data.
59 encoded TLV value.
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
X509PublicKey.java 24 private final byte[] encoded; field in class:X509PublicKey
27 public X509PublicKey(String algorithm, byte[] encoded, byte[] keyBytes) {
29 this.encoded = encoded;
42 return encoded;
  /libcore/luni/src/main/java/java/security/
KeyRep.java 44 private byte[] encoded; field in class:KeyRep
57 * @param encoded
58 * the encoded {@code byte[]} (obtained by
61 * if {@code type, algorithm, format or encoded} is {@code null}
64 public KeyRep(Type type, String algorithm, String format, byte[] encoded) {
68 this.encoded = encoded;
78 if(this.encoded == null) {
79 throw new NullPointerException("encoded == null");
89 * is initialized with a {@link PKCS8EncodedKeySpec} using the encoded ke
    [all...]
  /frameworks/av/media/libstagefright/codecs/common/include/
voAudio.h 52 VO_AUDIO_CodingADPCM, /**< Any variant of ADPCM encoded data */
53 VO_AUDIO_CodingAMRNB, /**< Any variant of AMR encoded data */
54 VO_AUDIO_CodingAMRWB, /**< Any variant of AMR encoded data */
55 VO_AUDIO_CodingAMRWBP, /**< Any variant of AMR encoded data */
56 VO_AUDIO_CodingQCELP13, /**< Any variant of QCELP 13kbps encoded data */
57 VO_AUDIO_CodingEVRC, /**< Any variant of EVRC encoded data */
58 VO_AUDIO_CodingAAC, /**< Any variant of AAC encoded data, 0xA106 - ISO/MPEG-4 AAC, 0xFF - AAC */
59 VO_AUDIO_CodingAC3, /**< Any variant of AC3 encoded data */
60 VO_AUDIO_CodingFLAC, /**< Any variant of FLAC encoded data */
61 VO_AUDIO_CodingMP1, /**< Any variant of MP1 encoded data *
    [all...]
  /development/ndk/platforms/android-14/samples/native-media/
README.txt 2 placed in /sdcard/NativeMedia.ts and encoded as:
  /external/webkit/LayoutTests/fast/encoding/
japanese-encoding-mix-expected.txt 1 Some text here is encoded as EUC-JP, and some (in comment) as Shift_JIS. Since there is an explicit encoding declaration, auto-detection shouldn't change the encoding.
  /external/bouncycastle/src/main/java/org/bouncycastle/util/encoders/
Hex.java 12 * encode the input data producing a Hex encoded byte array.
14 * @return a byte array containing the Hex encoded data.
23 * encode the input data producing a Hex encoded byte array.
25 * @return a byte array containing the Hex encoded data.
75 * decode the Hex encoded input data. It is assumed the input data is valid.
97 * decode the Hex encoded String data - whitespace will be ignored.
119 * decode the Hex encoded String data writing it to the given output stream,

Completed in 741 milliseconds

1 2 3 4 5 6 7 8 91011>>