HomeSort by relevance Sort by last modified time
    Searched defs:md5 (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
md5.py 7 warnings.warn("the md5 module is deprecated; use hashlib instead",
10 from hashlib import md5 namespace
11 new = md5
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
md5.py 7 warnings.warn("the md5 module is deprecated; use hashlib instead",
10 from hashlib import md5 namespace
11 new = md5
  /external/chromium_org/third_party/webrtc/base/
md5digest_unittest.cc 17 std::string Md5(const std::string& input) {
18 Md5Digest md5; local
19 return ComputeDigest(&md5, input);
23 Md5Digest md5; local
25 EXPECT_EQ(16U, md5.Size());
29 // These are the standard MD5 test vectors from RFC 1321.
30 EXPECT_EQ("d41d8cd98f00b204e9800998ecf8427e", Md5(""));
31 EXPECT_EQ("0cc175b9c0f1b6a831c399e269772661", Md5("a"));
32 EXPECT_EQ("900150983cd24fb0d6963f7d28e17f72", Md5("abc"));
33 EXPECT_EQ("f96b697d7cb7938d525a2f31aaf161d0", Md5("message digest"))
39 Md5Digest md5; local
51 Md5Digest md5; local
59 Md5Digest md5; local
67 Md5Digest md5; local
    [all...]
  /external/chromium_org/tools/grit/grit/extern/
FP.py 8 _new_md5 = hashlib.md5
10 import md5 namespace
11 _new_md5 = md5.new
23 """Generate a 64-bit fingerprint by taking the first half of the md5
35 takes the first half of the md5 of the string, but the
  /system/core/toolbox/
md5.c 7 #include <openssl/md5.h>
11 fprintf(stderr,"md5 file ...\n");
20 unsigned char md5[MD5_DIGEST_LENGTH]; local
48 MD5_Final(md5, &md5_ctx);
50 for (i = 0; i < (int)sizeof(md5); i++)
51 printf("%02x", md5[i]);
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
DigitalSignatureTest.java 49 MessageDigest md5 = null; local
52 md5 = MessageDigest.getInstance("MD5");
69 md5.update(pivateKeyEncoding);
72 md5.digest(md5_hash, 0, md5_hash.length);
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
user_priv_test.cc 53 libvpx_test::MD5 md5; local
83 md5.Add(img);
88 return string(md5.Get());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_md5.py 1 # Testing md5 module
3 warnings.filterwarnings("ignore", "the md5 module is deprecated.*",
7 from md5 import md5 namespace
22 self.assertEqual(hexstr(md5(s).digest()), expected)
23 self.assertEqual(md5(s).hexdigest(), expected)
39 m = md5('testing the hexdigest method')
48 m1 = md5()
53 m2 = md5()
test_pep247.py 7 warnings.filterwarnings('ignore', 'the md5 module is deprecated.*',
13 import md5 namespace
62 self.check_module(md5)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_md5.py 1 # Testing md5 module
3 warnings.filterwarnings("ignore", "the md5 module is deprecated.*",
7 from md5 import md5 namespace
22 self.assertEqual(hexstr(md5(s).digest()), expected)
23 self.assertEqual(md5(s).hexdigest(), expected)
39 m = md5('testing the hexdigest method')
48 m1 = md5()
53 m2 = md5()
test_pep247.py 7 warnings.filterwarnings('ignore', 'the md5 module is deprecated.*',
13 import md5 namespace
62 self.check_module(md5)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
backward.py 141 # Md5 is available in different places.
144 md5 = hashlib.md5 variable
146 import md5 namespace
147 md5 = md5.new variable
misc.py 4 from coverage.backward import md5, sorted # pylint: disable=W0622 namespace
87 """Hashes Python data into md5."""
89 self.md5 = md5()
93 self.md5.update(to_bytes(str(type(v))))
95 self.md5.update(to_bytes(v))
118 return self.md5.digest()
  /external/chromium_org/third_party/skia/bench/
ChecksumBench.cpp 64 SkMD5 md5; local
65 md5.update(reinterpret_cast<uint8_t*>(fData), sizeof(fData));
67 md5.finish(digest);
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSNew.py 12 # hashlib is supplied as of Python 2.5 as the replacement interface for md5
13 # and other secure hashes. In 2.6, md5 is deprecated. Import hashlib if
14 # available, avoiding a deprecation warning under 2.6. Import md5 otherwise,
18 _new_md5 = hashlib.md5
20 import md5 namespace
21 _new_md5 = md5.new
42 seed: Seed for MD5 hash.
52 # Calculate a MD5 signature for the seed and name.
  /external/skia/bench/
ChecksumBench.cpp 64 SkMD5 md5; local
65 md5.update(reinterpret_cast<uint8_t*>(fData), sizeof(fData));
67 md5.finish(digest);
  /external/wpa_supplicant_8/src/crypto/
crypto_internal.c 20 struct MD5Context md5; member in union:crypto_hash::__anon38175
47 MD5Init(&ctx->u.md5);
59 MD5Init(&ctx->u.md5);
60 MD5Update(&ctx->u.md5, key, key_len);
61 MD5Final(tk, &ctx->u.md5);
73 MD5Init(&ctx->u.md5);
74 MD5Update(&ctx->u.md5, k_pad, sizeof(k_pad));
133 MD5Update(&ctx->u.md5, data, len);
172 MD5Final(mac, &ctx->u.md5);
202 MD5Final(mac, &ctx->u.md5);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
DigestFactory.java 28 private static Set md5 = new HashSet(); field in class:DigestFactory
39 md5.add("MD5");
40 md5.add(PKCSObjectIdentifiers.md5.getId());
62 oids.put("MD5", PKCSObjectIdentifiers.md5);
63 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5);
97 if (md5.contains(digestName)
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/
ez_setup.py 48 from md5 import md5 namespace
49 digest = md5(data).hexdigest()
52 "md5 validation of %s failed! (Possible download problem?)"
189 """Update our built-in md5 registry"""
192 from md5 import md5 namespace
197 md5_data[base] = md5(f.read()).hexdigest()
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_metadata_storage.h 77 std::string md5; member in struct:drive::internal::ResourceMetadataStorage::RecoveredCacheInfo
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
decode_to_md5.c 11 // Frame-by-frame MD5 Checksum
18 // MD5 algorithm
20 // The Message-Digest 5 (MD5) is a well known hash function. We have provided
21 // an implementation derived from the RSA Data Security, Inc. MD5 Message-Digest
28 // Each row of the image is passed to the MD5 accumulator. First the Y plane
46 MD5Context md5; local
48 MD5Init(&md5);
57 MD5Update(&md5, buf, w);
62 MD5Final(digest, &md5);
  /external/chromium_org/third_party/skia/dm/
DMWriteTask.cpp 73 SkString md5; local
75 md5.appendf("%02x", digest.data[i]);
77 return md5;
85 SkString md5; // In ASCII, so 32 bytes long. member in struct:DM::JsonData
91 SkString md5; local
94 md5 = fData ? get_md5(fData->getMemoryBase(), fData->getLength())
105 JsonData entry = { fBaseName, config, mode, fSourceType, md5 };
122 path = SkOSPath::Join(dir.c_str(), md5.c_str());
189 result["md5"] = gJsonData[i].md5.c_str()
    [all...]
  /external/libvpx/libvpx/examples/
decode_to_md5.c 11 // Frame-by-frame MD5 Checksum
18 // MD5 algorithm
20 // The Message-Digest 5 (MD5) is a well known hash function. We have provided
21 // an implementation derived from the RSA Data Security, Inc. MD5 Message-Digest
28 // Each row of the image is passed to the MD5 accumulator. First the Y plane
48 MD5Context md5; local
50 MD5Init(&md5);
59 MD5Update(&md5, buf, w);
64 MD5Final(digest, &md5);
  /external/libvpx/libvpx/test/
vp9_thread_test.cc 100 // Decodes |filename| with |num_threads|. Returns the md5 of the decoded frames.
109 libvpx_test::MD5 md5; local
123 md5.Add(img);
126 return string(md5.Get());
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
decode_to_md5.c 11 // Frame-by-frame MD5 Checksum
18 // MD5 algorithm
20 // The Message-Digest 5 (MD5) is a well known hash function. We have provided
21 // an implementation derived from the RSA Data Security, Inc. MD5 Message-Digest
28 // Each row of the image is passed to the MD5 accumulator. First the Y plane
48 MD5Context md5; local
50 MD5Init(&md5);
59 MD5Update(&md5, buf, w);
64 MD5Final(digest, &md5);

Completed in 825 milliseconds

1 2 3 4 5 6