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

1 2 3 4 5 6 7 8 91011>>

  /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/boringssl/src/include/openssl/
md5.h 66 /* MD5. */
69 /* MD5_CBLOCK is the block size of MD5. */
72 /* MD5_DIGEST_LENGTH is the length of an MD5 digest. */
75 /* MD51_Init initialises |md5| and returns one. */
76 OPENSSL_EXPORT int MD5_Init(MD5_CTX *md5);
78 /* MD5_Update adds |len| bytes from |data| to |md5| and returns one. */
79 OPENSSL_EXPORT int MD5_Update(MD5_CTX *md5, const void *data, size_t len);
81 /* MD5_Final adds the final padding to |md5| and writes the resulting digest to
84 OPENSSL_EXPORT int MD5_Final(uint8_t *md, MD5_CTX *md5);
86 /* MD5 writes the digest of |len| bytes from |data| to |out| and returns |out|
    [all...]
  /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()
  /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()
  /external/elfutils/src/lib/
Makefile.am 37 crc32.c crc32_file.c md5.c sha1.c \
40 noinst_HEADERS = fixedsizehash.h system.h dynamicsizehash.h list.h md5.h \
  /external/freetype/src/base/
md5.h 3 * MD5 Message-Digest Algorithm (RFC 1321).
6 * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5
23 * See md5.c for more information.
27 #include <openssl/md5.h>
  /external/google-breakpad/src/common/mac/
file_id.cc 56 MD5Context md5;
57 MD5Init(&md5);
64 MD5Update(&md5, buffer, static_cast<unsigned>(buffer_size));
68 MD5Final(identifier, &md5);
81 return macho.MD5(cpu_type, cpu_subtype, identifier);
  /external/pdfium/third_party/freetype/src/base/
md5.h 3 * MD5 Message-Digest Algorithm (RFC 1321).
6 * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5
23 * See md5.c for more information.
27 #include <openssl/md5.h>
  /external/ppp/pppd/
openssl-hash.h 22 #include <openssl/md5.h>
  /external/skia/dm/
DMJsonWriter.h 30 SkString md5; // In ASCII, so 32 bytes long. member in struct:DM::JsonWriter::BitmapResult
  /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/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/
serial_number_generator.py 12 from hashlib import md5 namespace
14 from md5 import md5 namespace
42 def hash_identifier(s, length, pad=True, hasher=md5, prefix='',
58 # Accept sha/md5 modules as well as callables
60 if length > 26 and hasher is md5:
62 "md5 cannot create hashes longer than 26 characters in "
119 ValueError: md5 cannot create hashes longer than 26 characters in length (you gave 30)
  /external/boringssl/src/crypto/digest/
digest_test.cc 23 #include <openssl/md5.h>
40 static const MD md5 = { "MD5", &EVP_md5, &MD5 }; variable
46 static const MD md5_sha1 = { "MD5-SHA1", &EVP_md5_sha1, nullptr };
73 // MD5 tests, from RFC 1321.
74 { md5, "", 1, "d41d8cd98f00b204e9800998ecf8427e" },
75 { md5, "a", 1, "0cc175b9c0f1b6a831c399e269772661" },
76 { md5, "abc", 1, "900150983cd24fb0d6963f7d28e17f72" },
77 { md5, "message digest", 1, "f96b697d7cb7938d525a2f31aaf161d0" }
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_internal.c 20 struct MD5Context md5; member in union:crypto_hash::__anon21451
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/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/google-breakpad/src/tools/solaris/dump_syms/
Makefile 43 DUMP_OBJ=dump_symbols.o guid_creator.o dump_syms.o file_id.o md5.o
57 md5.o:../../../common/md5.cc
  /external/libvpx/libvpx/test/
user_priv_test.cc 53 libvpx_test::MD5 md5; local
83 md5.Add(img);
88 return string(md5.Get());
  /external/skia/bench/
ChecksumBench.cpp 64 SkMD5 md5; local
65 md5.update(reinterpret_cast<uint8_t*>(fData), sizeof(fData));
67 md5.finish(digest);
  /external/boringssl/src/crypto/md5/
md5.c 56 #include <openssl/md5.h>
63 uint8_t *MD5(const uint8_t *data, size_t len, uint8_t *out) {
79 int MD5_Init(MD5_CTX *md5) {
80 memset(md5, 0, sizeof(MD5_CTX));
81 md5->A = 0x67452301UL;
82 md5->B = 0xefcdab89UL;
83 md5->C = 0x98badcfeUL;
84 md5->D = 0x10325476UL;
95 void md5_block_data_order(MD5_CTX *md5, const void *p, size_t num);
154 void md5_block_data_order(MD5_CTX *md5, const void *in_data, size_t num)
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
HashingTest.java 49 HashTestUtils.checkAvalanche(Hashing.md5(), 100, 0.4);
50 HashTestUtils.checkNo2BitCharacteristics(Hashing.md5());
51 HashTestUtils.checkNoFunnels(Hashing.md5());
52 HashTestUtils.assertInvariants(Hashing.md5());
53 assertEquals("Hashing.md5()", Hashing.md5().toString());
333 new ConcatenatedHashFunction(Hashing.md5()),
334 new ConcatenatedHashFunction(Hashing.md5()));
336 new ConcatenatedHashFunction(Hashing.md5(), Hashing.murmur3_32()),
337 new ConcatenatedHashFunction(Hashing.md5(), Hashing.murmur3_32()))
    [all...]
HashFunctionEnum.java 31 MD5(Hashing.md5()),
  /external/vogar/src/vogar/
Md5Cache.java 24 * Caches content by MD5.
51 * Returns an ASCII hex representation of the MD5 of the content of 'file'.
53 private static String md5(File file) { method in class:Md5Cache
56 MessageDigest digester = MessageDigest.getInstance("MD5");
69 throw new RuntimeException("Unable to compute MD5 of \"" + file + "\"", cause);
95 key += "-" + md5(element);
104 return keyPrefix + "-" + md5(file);
  /external/fio/examples/
e4defrag2.fio 63 verify=md5
76 verify=md5
  /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);

Completed in 699 milliseconds

1 2 3 4 5 6 7 8 91011>>