HomeSort by relevance Sort by last modified time
    Searched refs:digests (Results 51 - 75 of 141) sorted by null

1 23 4 5 6

  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyGenParameterSpecTest.java 199 String[] digests = new String[] {KeyProperties.DIGEST_MD5, KeyProperties.DIGEST_SHA512}; local
200 String[] originalDigests = digests.clone();
213 .setDigests(digests)
234 digests[1] = null;
KeyFactoryTest.java 104 String[] digests = new String[] {KeyProperties.DIGEST_SHA1, local
114 .setDigests(digests)
138 TestUtils.assertContentsInAnyOrder(actualDigests, digests);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
PKCS5S2ParametersGenerator.java 8 import org.bouncycastle.crypto.digests.AndroidDigestFactory;
  /libcore/luni/src/test/java/com/android/org/bouncycastle/crypto/digests/
DigestTest.java 17 package com.android.org.bouncycastle.crypto.digests;
31 * Processes the two given message digests for the same data and checks
  /external/autotest/client/site_tests/kernel_CryptoAPI/
kernel_CryptoAPI.py 158 logging.error("%s: digests do not match", name)
169 Test several digests, using both the kernel crypto APIs and python
175 digests = [
181 for (name, lib) in digests:
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedGenerator.java 90 protected Map digests = new HashMap(); field in class:CMSSignedGenerator
238 * Return a map of oids and byte arrays representing the digests calculated on the content during
241 * @return a map of oids (as String objects) and byte[] representing digests.
245 return new HashMap(digests);
CMSUtils.java 296 static InputStream attachDigestsToInputStream(Collection digests, InputStream s)
299 Iterator it = digests.iterator();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
DSASigner.java 25 import org.bouncycastle.crypto.digests.NullDigest;
27 import org.bouncycastle.crypto.digests.AndroidDigestFactory;
30 // import org.bouncycastle.crypto.digests.SHA1Digest;
31 // import org.bouncycastle.crypto.digests.SHA224Digest;
32 // import org.bouncycastle.crypto.digests.SHA256Digest;
33 // import org.bouncycastle.crypto.digests.SHA384Digest;
34 // import org.bouncycastle.crypto.digests.SHA512Digest;
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.h 245 void WriteHashDigests(const CUInt32DefVector &digests);
260 const CUInt32DefVector &digests);
7zIn.h 369 CUInt32DefVector &digests);
376 CUInt32DefVector &digests);
  /external/boringssl/src/ssl/
t1_enc.c 497 * underlying digests so can be called multiple times and prior to the final
547 uint8_t digests[2 * EVP_MAX_MD_SIZE]; local
548 int digests_len = tls1_handshake_digest(ssl, digests, sizeof(digests));
556 TLS_MD_EXTENDED_MASTER_SECRET_CONST_SIZE, digests,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
AuthorityKeyIdentifier.java 18 import org.bouncycastle.crypto.digests.AndroidDigestFactory;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
KeyAgreementSpi.java 22 import org.bouncycastle.crypto.digests.SHA1Digest;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
SHA1.java 14 import org.bouncycastle.crypto.digests.SHA1Digest;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
DigestFactory.java 14 // import org.bouncycastle.crypto.digests.MD5Digest;
15 // import org.bouncycastle.crypto.digests.SHA1Digest;
16 // import org.bouncycastle.crypto.digests.SHA224Digest;
17 // import org.bouncycastle.crypto.digests.SHA256Digest;
18 // import org.bouncycastle.crypto.digests.SHA384Digest;
19 // import org.bouncycastle.crypto.digests.SHA512Digest;
20 // import org.bouncycastle.crypto.digests.SHA512tDigest;
23 import org.bouncycastle.crypto.digests.AndroidDigestFactory;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertBlacklist.java 33 import org.bouncycastle.crypto.digests.AndroidDigestFactory;
  /hardware/libhardware/include/hardware/
keymaster1.h 175 * Gets the digests supported for the specified algorithm. Caller assumes ownership of the
180 * \param[in] algorithm The algorithm for which supported digests will be returned.
182 * \param[out] digests Array of digests supported. The caller takes ownership of the array and
185 * \param[out] digests_length Length of \p digests.
190 keymaster_digest_t** digests,
  /system/keymaster/
soft_keymaster_device.cpp 88 keymaster_digest_t* digests; local
91 dev->get_supported_digests(dev, algorithm, purpose, &digests, &digests_length);
93 LOG_E("Error %d getting supported digests from keymaster1 device", error);
96 std::unique_ptr<keymaster_digest_t, Malloc_Delete> digests_deleter(digests);
98 (*map)[key] = make_vector(digests, digests_length);
507 keymaster_digest_t** digests,
512 if (!digests || !digests_length)
517 return km1_dev->get_supported_digests(km1_dev, algorithm, purpose, digests, digests_length);
531 *digests = reinterpret_cast<keymaster_digest_t*>(malloc(*digests_length * sizeof(**digests)));
    [all...]
android_keymaster_test_utils.cpp 769 keymaster_digest_t** digests,
    [all...]
android_keymaster_messages_test.cpp 109 keymaster_digest_t digests[] = {KM_DIGEST_NONE, KM_DIGEST_MD5, KM_DIGEST_SHA1}; local
111 rsp.SetResults(digests);
114 EXPECT_EQ(array_length(digests), deserialized->results_length);
115 EXPECT_EQ(0, memcmp(deserialized->results, digests, array_size(digests)));
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
hashing_helper.py 189 Hashing class will be populated with digests upon return.
388 """"Reads from the wrapped file pointer and calculates hash digests.
422 """Seeks in the wrapped file pointer and catches up hash digests.
449 # Just load the saved digests.
  /system/tpm/trunks/
trunks_client_test.cc 714 std::vector<std::string> digests; local
715 digests.push_back(sign_digest);
716 digests.push_back(decrypt_digest);
717 result = trial_session->PolicyOR(digests);
778 result = policy_session->PolicyOR(digests);
802 result = policy_session->PolicyOR(digests);
    [all...]
tpm_utility_impl.cc 360 TPML_DIGEST_VALUES digests; local
361 digests.count = 1;
362 digests.digests[0].hash_alg = TPM_ALG_SHA256;
364 digests.digests[0].digest.sha256,
368 digests,
405 pcr_value->assign(StringFrom_TPM2B_DIGEST(pcr_values.digests[0]));
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
OAEPEncoding.java 10 import org.bouncycastle.crypto.digests.AndroidDigestFactory;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeWrapEngine.java 10 import org.bouncycastle.crypto.digests.AndroidDigestFactory;

Completed in 1524 milliseconds

1 23 4 5 6