HomeSort by relevance Sort by last modified time
    Searched full:digest_length (Results 1 - 18 of 18) sorted by null

  /external/libchrome/crypto/
hmac.cc 49 size_t digest_length = DigestLength();
51 new unsigned char[digest_length]);
52 if (!Sign(data, computed_digest.get(), digest_length))
56 std::min(digest.size(), digest_length));
hmac_nss.cc 79 size_t digest_length) const {
110 digest, &len, digest_length) != SECSuccess) {
hmac.h 67 // returned in |digest|, which has |digest_length| bytes of storage available.
69 size_t digest_length) const WARN_UNUSED_RESULT;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
SHA384Digest.java 21 private static final int DIGEST_LENGTH = 48;
56 return DIGEST_LENGTH;
74 return DIGEST_LENGTH;
SHA512Digest.java 21 private static final int DIGEST_LENGTH = 64;
56 return DIGEST_LENGTH;
76 return DIGEST_LENGTH;
SHA1Digest.java 16 private static final int DIGEST_LENGTH = 20;
83 return DIGEST_LENGTH;
130 return DIGEST_LENGTH;
SHA224Digest.java 23 private static final int DIGEST_LENGTH = 28;
98 return DIGEST_LENGTH;
147 return DIGEST_LENGTH;
SHA256Digest.java 23 private static final int DIGEST_LENGTH = 32;
99 return DIGEST_LENGTH;
149 return DIGEST_LENGTH;
MD5Digest.java 14 private static final int DIGEST_LENGTH = 16;
76 return DIGEST_LENGTH;
128 return DIGEST_LENGTH;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
MessageDigestSpiTest.java 69 final int DIGEST_LENGTH = 2;
74 return DIGEST_LENGTH;
78 return new byte[DIGEST_LENGTH]; // return non-null value
85 md.engineDigest(null, 1, DIGEST_LENGTH);
91 md.engineDigest(b, 1, DIGEST_LENGTH - 1);
113 assertEquals("incorrect result", DIGEST_LENGTH, md
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1Constants.java 81 public static final int DIGEST_LENGTH = 20;
SHA1PRNG_SecureRandomImpl.java 179 nextBytes = new byte[DIGEST_LENGTH];
256 myRandom.engineSetSeed(getRandomBytes(DIGEST_LENGTH));
300 updateSeed(getRandomBytes(DIGEST_LENGTH));
499 nextBytes = new byte[DIGEST_LENGTH];
  /system/tpm/trunks/
hmac_authorization_delegate.cc 274 unsigned int digest_length; local
277 &digest_length); local
278 CHECK_EQ(digest_length, kHashDigestSize);
279 return std::string(reinterpret_cast<char*>(digest), digest_length);
  /system/update_engine/
certificate_checker.cc 147 unsigned int digest_length; local
152 &digest_length,
162 string digest_string = base::HexEncode(digest, digest_length);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/
MSOutlookKeyIdCalculator.java 167 private static final int DIGEST_LENGTH = 20;
189 return DIGEST_LENGTH;
236 return DIGEST_LENGTH;
  /external/toybox/toys/lsb/
md5sum.c 255 int digest_length; member in struct:hash
281 for (i = 0; i<hash->digest_length; i++)
  /external/webrtc/webrtc/base/
opensslstreamadapter.cc 1052 size_t digest_length; local
1057 &digest_length)) {
1062 Buffer computed_digest(digest, digest_length);
    [all...]
  /development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
InsecureSHA1PRNGKeyDerivator.java 181 private static final int DIGEST_LENGTH = 20;
211 nextBytes = new byte[DIGEST_LENGTH];

Completed in 820 milliseconds