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

12 3 4 5 6

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
SHA384Digest.java 1 package org.bouncycastle.crypto.digests;
SHA512Digest.java 1 package org.bouncycastle.crypto.digests;
GeneralDigest.java 1 package org.bouncycastle.crypto.digests;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
OpenSSLPBEParametersGenerator.java 7 import org.bouncycastle.crypto.digests.AndroidDigestFactory;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
MD5.java 6 import org.bouncycastle.crypto.digests.MD5Digest;
SHA224.java 6 import org.bouncycastle.crypto.digests.SHA224Digest;
SHA256.java 6 import org.bouncycastle.crypto.digests.SHA256Digest;
SHA384.java 6 import org.bouncycastle.crypto.digests.SHA384Digest;
SHA512.java 6 import org.bouncycastle.crypto.digests.SHA512Digest;
8 // import org.bouncycastle.crypto.digests.SHA512tDigest;
  /external/tpm2/
Marshal_PCR_Extend.c 18 result = TPML_DIGEST_VALUES_Unmarshal(&target->digests, buffer, size);
Marshal_PCR_Event.c 27 total_size += TPML_DIGEST_VALUES_Marshal(&source->digests, buffer, size);
  /frameworks/base/keystore/java/android/security/keystore/
KeyProtection.java 124 * digests. The use of the public key is unrestricted. Both the private and the public key must
189 * using any padding schemes and digests. Both the private and the public key must export their key
236 @KeyProperties.DigestEnum String[] digests,
251 mDigests = ArrayUtils.cloneIfNotEmpty(digests);
337 throw new IllegalStateException("Digests not specified");
583 public Builder setDigests(@KeyProperties.DigestEnum String... digests) {
584 mDigests = ArrayUtils.cloneIfNotEmpty(digests);
    [all...]
KeyInfo.java 98 @KeyProperties.DigestEnum String[] digests,
117 mDigests = ArrayUtils.cloneIfNotEmpty(ArrayUtils.nullToEmpty(digests));
KeyGenParameterSpec.java 141 * scheme with SHA-256 or SHA-512 digests. The use of the public key is unrestricted.
167 * OAEP encryption padding scheme with SHA-256 or SHA-512 digests. The use of the public key is
282 @KeyProperties.DigestEnum String[] digests,
326 mDigests = ArrayUtils.cloneIfNotEmpty(digests);
463 throw new IllegalStateException("Digests not specified");
    [all...]
AndroidKeyStoreSecretKeyFactorySpi.java 92 @KeyProperties.DigestEnum String[] digests; local
145 digests = KeyProperties.Digest.allFromKeymaster(
197 digests,
  /system/tpm/trunks/
policy_session_impl.h 59 TPM_RC PolicyOR(const std::vector<std::string>& digests) override;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedData.java 98 * Content with detached signature, digests precomputed
100 * @param hashes a map of precomputed digests for content indexed by name of hash.
342 Set<AlgorithmIdentifier> digests = new HashSet<AlgorithmIdentifier>(signedData.getDigestAlgorithms().size()); local
346 digests.add(AlgorithmIdentifier.getInstance(en.nextElement()));
349 return Collections.unmodifiableSet(digests);
510 ASN1Set digests = new DERSet(digestAlgs); local
520 vec.add(digests);
CMSSignedDataGenerator.java 122 digests.clear(); // clear the current preserved digest state
186 digests.put(inf.getDigestAlgorithm().getAlgorithm().getId(), calcDigest);
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.cpp 331 void COutArchive::WriteHashDigests(const CUInt32DefVector &digests)
335 for (i = 0; i < digests.Defs.Size(); i++)
336 if (digests.Defs[i])
342 if (numDefined == digests.Defs.Size())
347 WriteBoolVector(digests.Defs);
349 for (i = 0; i < digests.Defs.Size(); i++)
350 if (digests.Defs[i])
351 WriteUInt32(digests.Vals[i]);
400 const CUInt32DefVector &digests)
444 digests2.Defs.Add(digests.Defs[digestIndex]);
557 CUInt32DefVector digests; local
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyGeneratorTest.java 309 // Digests authorization not specified in algorithm parameters
322 // No digests specified in algorithm parameters
397 String[] digests; local
400 // authorized digests (if the list if provided).
401 digests = new String[] {algorithm, "weird"};
403 digests = new String[] {"weird"};
405 keyGenerator.init(getWorkingSpec().setDigests(digests).build());
431 // Authorized for empty set of digests
472 String[] digests; local
477 digests = new String[] {TestUtils.getHmacAlgorithmDigest(algorithm)}
    [all...]
KeyProtectionTest.java 146 String[] digests = new String[] {KeyProperties.DIGEST_MD5, KeyProperties.DIGEST_SHA512}; local
147 String[] originalDigests = digests.clone();
158 .setDigests(digests)
171 digests[1] = null;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
SignatureSpi.java 18 import org.bouncycastle.crypto.digests.NullDigest;
20 import org.bouncycastle.crypto.digests.AndroidDigestFactory;
23 // import org.bouncycastle.crypto.digests.RIPEMD160Digest;
24 // import org.bouncycastle.crypto.digests.SHA1Digest;
25 // import org.bouncycastle.crypto.digests.SHA224Digest;
26 // import org.bouncycastle.crypto.digests.SHA256Digest;
27 // import org.bouncycastle.crypto.digests.SHA384Digest;
28 // import org.bouncycastle.crypto.digests.SHA512Digest;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
AlgorithmParameterGeneratorSpi.java 10 import org.bouncycastle.crypto.digests.SHA256Digest;
  /external/bouncycastle/
Android.mk 29 bcprov/src/main/java/org/bouncycastle/crypto/digests/AndroidDigestFactoryBouncyCastle.java, \
34 bcprov/src/main/java/org/bouncycastle/crypto/digests/AndroidDigestFactoryOpenSSL.java \
35 bcprov/src/main/java/org/bouncycastle/crypto/digests/OpenSSLDigest.java, \
  /build/tools/signapk/src/com/android/signapk/
ApkSignerV2.java 138 * @throws SignatureException if an error occurs when computing digests of generating
198 // Figure which which digests to use for APK contents.
207 // Compute digests of APK contents.
215 throw new SignatureException("Failed to compute digests of APK", e);
218 // Sign the digests and wrap the signatures and signer info into an APK Signing Block.
257 // chunks (uint32 little-endian) and the concatenation of digests of chunks of all
279 // Optimization opportunity: digests of chunks can be computed in parallel.
432 List<Pair<Integer, byte[]>> digests = local
445 digests.add(Pair.create(signatureAlgorithm, contentDigest));
447 signedData.digests = digests
533 public List<Pair<Integer, byte[]>> digests; field in class:ApkSignerV2.V2SignatureSchemeBlock.SignedData
    [all...]

Completed in 334 milliseconds

12 3 4 5 6