HomeSort by relevance Sort by last modified time
    Searched full:encoded (Results 276 - 300 of 3881) sorted by null

<<11121314151617181920>>

  /external/wpa_supplicant_8/src/utils/
base64.c 19 * @src: Data to be encoded
20 * @len: Length of the data to be encoded
22 * Returns: Allocated buffer of out_len bytes of encoded data,
  /frameworks/av/libvideoeditor/vss/common/inc/
M4_BitStreamParser.h 112 * getMpegLengthFromInteger returns a decoded size value from an encoded one (SDL)
115 * @param val : encoded value
125 * @brief Decode an MPEG4 Systems descriptor size from an encoded SDL size data.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_FillVLCBuffer.c 38 * [in] run Run value (count of zeros) to be encoded
39 * [in] level Level value (non-zero value) to be encoded
51 * [out] ppBitStream *ppBitStream is updated after the block is encoded
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertPathImpl.java 59 * on the base of the following ASN.1 DER encoded forms:<br>
164 throw new CertificateException("Incorrect PKCS7 encoded form: missing signed data");
181 * Generates certification path object on the base of PkiPath encoded form
197 * input stream. The format of provided encoded form is specified by
226 * encoded form provided via array of bytes.
240 * array of bytes. The format of provided encoded form is specified by
351 // create the X.509 certificate on the base of its encoded form
362 * Returns the Collection of the encoded form of certificates contained
363 * in the X509CertPathImpl object to be encoded.
367 // object to be encoded
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/security/cert/
CertificateTest.java 114 "The Certificates with equal encoded form should be equal",
121 "The Certificates with equal encoded form should be equal",
130 assertFalse("The Certificates with differing encoded form "
  /libcore/luni/src/test/java/tests/security/spec/
PKCS8EncodedKeySpecTest.java 62 * Assertion: returns encoded key
102 // Get encoded key
128 // Get encoded key again
X509EncodedKeySpecTest.java 63 * Assertion: returns encoded key
103 // Get encoded key
129 // Get encoded key again
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email_codecs.py 34 # chunks into a single encoded word. However it doesn't violate the
35 # standard to have them as two encoded chunks and maybe it's
37 # encoded word.
test_email_codecs_renamed.py 34 # chunks into a single encoded word. However it doesn't violate the
35 # standard to have them as two encoded chunks and maybe it's
37 # encoded word.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email_codecs.py 34 # chunks into a single encoded word. However it doesn't violate the
35 # standard to have them as two encoded chunks and maybe it's
37 # encoded word.
test_email_codecs_renamed.py 34 # chunks into a single encoded word. However it doesn't violate the
35 # standard to have them as two encoded chunks and maybe it's
37 # encoded word.
  /external/chromium/net/base/
keygen_handler_mac.cc 162 CSSM_DATA encoded; local
164 kPublicKeyAndChallengeTemplate, &encoded);
171 err = SignData(encoded, private_key, &signature);
182 kSignedPublicKeyAndChallengeTemplate, &encoded);
189 std::string input(reinterpret_cast<char*>(encoded.Data), encoded.Length);
  /external/chromium_org/chrome/browser/metrics/
metrics_log_serializer_unittest.cc 59 (*it)->GetAsString(&str); // Base64 encoded "Hello world!" string.
60 std::string encoded; local
61 base::Base64Encode("Hello world!", &encoded);
62 EXPECT_TRUE(encoded == str);
65 (*it)->GetAsString(&str); // MD5 for encoded "Hello world!" string.
66 EXPECT_TRUE(base::MD5String(encoded) == str);
  /external/chromium_org/chrome/common/extensions/api/
networking_private.json 29 "description": "A string containing a PEM-encoded X.509 certificate for use in verifying the signed data."
33 "description": "A string containing a PEM-encoded RSA public key to be used to compare with the one in signedData"
37 "description": "A string containing a base64-encoded random binary data for use in verifying the signed data."
256 "description": "A callback function that receives base64-encoded encrypted credential data to send to a trusted device."
272 "description": "A string containing the base64-encoded data to encrypt."
283 "description": "A callback function that receives base64-encoded encrypted data to send to a trusted device."
  /external/chromium_org/net/base/
keygen_handler_mac.cc 163 CSSM_DATA encoded; local
165 kPublicKeyAndChallengeTemplate, &encoded);
172 err = SignData(encoded, private_key, &signature);
183 kSignedPublicKeyAndChallengeTemplate, &encoded);
190 std::string input(reinterpret_cast<char*>(encoded.Data), encoded.Length);
  /external/chromium_org/third_party/tlslite/tlslite/
X509CertChain.py 29 """Parse a PEM-encoded X.509 certificate file chain file.
32 @param s: A PEM-encoded (eg: Base64) X.509 certificate file, with every
39 """Simple iterator over PEM-encoded certificates within a string.
42 @ivar data: A string containing PEM-encoded (Base64) certificates,
105 """Get the hex-encoded fingerprint of the end-entity certificate.
108 @return: A hex-encoded fingerprint.
  /external/javasqlite/src/main/java/SQLite/
StringEncoder.java 33 * @param a the byte array to be encoded. A null reference is handled as
35 * @return the encoded bytes as a string. When an empty array is
70 // construct encoded output
101 * a valid encoded string for this encoder.
223 * @param a the byte array to be encoded. A null reference is handled as
225 * @return the encoded bytes as a string.
  /libcore/luni/src/main/java/java/security/cert/
X509CRL.java 93 * Returns this CRL in ASN.1 DER encoded form.
95 * @return this CRL in ASN.1 DER encoded form.
235 * Returns the {@code tbsCertList} information of this CRL in DER encoded
238 * @return the CRL information in DER encoded form.
266 * Returns the parameters of the signature algorithm in DER encoded form.
268 * @return the parameters of the signature algorithm in DER encoded form, or
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unicode_file.py 14 # cannot be encoded in the file system encoding.
116 def _do_directory(self, make_name, chdir_name, encoded):
124 if not encoded:
183 # Make dir with encoded, chdir with unicode, checkdir with encoded
184 # (or unicode/encoded/unicode, etc
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_unicode_file.py 14 # cannot be encoded in the file system encoding.
116 def _do_directory(self, make_name, chdir_name, encoded):
124 if not encoded:
183 # Make dir with encoded, chdir with unicode, checkdir with encoded
184 # (or unicode/encoded/unicode, etc
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedMember.java 78 * @param lastIndex {@code >= 0;} the previous member index value encoded, or
82 * @return {@code >= 0;} the member index value that was encoded
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedMember.java 77 * @param lastIndex {@code >= 0;} the previous member index value encoded, or
81 * @return {@code >= 0;} the member index value that was encoded
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
X509CRL2Test.java 56 // check that it is an encoded as a OCTET STRING
58 + " was not encoded as an OCTET STRING",
X509CRLEntry2Test.java 56 // check that it is an encoded as a OCTET STRING
58 + " was not encoded as an OCTET STRING",
X509Certificate2Test.java 54 // check that it is an encoded as a OCTET STRING
56 + " was not encoded as an OCTET STRING", 0x04, value[0]);

Completed in 4362 milliseconds

<<11121314151617181920>>