Home
last modified time | relevance | path

Searched refs:md5 (Results 1 – 25 of 208) sorted by relevance

123456789

/external/libvpx/libvpx/test/
Dtest-data.sha193 db55ec7fd02c864ba996ff060b25b1e08611330b *vp80-00-comprehensive-001.ivf.md5
94 29db0ad011cba1e45f856d5623cd38dac3e3bf19 *vp80-00-comprehensive-002.ivf.md5
95 e84f258f69e173e7d68f8f8c037a0a3766902182 *vp80-00-comprehensive-003.ivf.md5
96 eb7912eaf69559a16fd82bc3f5fb1524cf4a4466 *vp80-00-comprehensive-004.ivf.md5
97 4206f71c94894bd5b5b376f6c09b3817dbc65206 *vp80-00-comprehensive-005.ivf.md5
98 4f89b356f6f2fecb928f330a10f804f00f5325f5 *vp80-00-comprehensive-006.ivf.md5
99 2813236a32964dd8007e17648bcf035a20fcda6c *vp80-00-comprehensive-007.ivf.md5
100 10746c72098f872803c900e17c5680e451f5f498 *vp80-00-comprehensive-008.ivf.md5
101 39a23d0692ce64421a7bb7cdf6ccec5928d37fff *vp80-00-comprehensive-009.ivf.md5
102 f6e3de8931a0cc659bda8fbc14050346955e72d4 *vp80-00-comprehensive-010.ivf.md5
[all …]
Dtest-data.mk27 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-001.ivf.md5
29 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-002.ivf.md5
31 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-003.ivf.md5
33 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-004.ivf.md5
35 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-005.ivf.md5
37 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-006.ivf.md5
39 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-007.ivf.md5
41 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-008.ivf.md5
43 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-009.ivf.md5
45 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-010.ivf.md5
[all …]
Dvp9_frame_parallel_test.cc55 libvpx_test::MD5 md5; in DecodeFileWithPause() local
86 md5.Add(img); in DecodeFileWithPause()
93 return string(md5.Get()); in DecodeFileWithPause()
142 libvpx_test::MD5 md5; in DecodeFile() local
167 md5.Add(img); in DecodeFile()
174 return string(md5.Get()); in DecodeFile()
/external/boringssl/src/crypto/md5/
DCMakeLists.txt7 md5-x86_64.${ASM_EXT}
15 md5-586.${ASM_EXT}
20 md5 target
24 md5.c
29 perlasm(md5-x86_64.${ASM_EXT} asm/md5-x86_64.pl)
30 perlasm(md5-586.${ASM_EXT} asm/md5-586.pl)
Dmd5.c79 int MD5_Init(MD5_CTX *md5) { in MD5_Init() argument
80 memset(md5, 0, sizeof(MD5_CTX)); in MD5_Init()
81 md5->A = 0x67452301UL; in MD5_Init()
82 md5->B = 0xefcdab89UL; in MD5_Init()
83 md5->C = 0x98badcfeUL; in MD5_Init()
84 md5->D = 0x10325476UL; in MD5_Init()
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) { in md5_block_data_order() argument
161 A = md5->A; in md5_block_data_order()
162 B = md5->B; in md5_block_data_order()
[all …]
/external/wpa_supplicant_8/src/crypto/
Dcrypto_internal.c20 struct MD5Context md5; member
47 MD5Init(&ctx->u.md5); in crypto_hash_init()
59 MD5Init(&ctx->u.md5); in crypto_hash_init()
60 MD5Update(&ctx->u.md5, key, key_len); in crypto_hash_init()
61 MD5Final(tk, &ctx->u.md5); in crypto_hash_init()
73 MD5Init(&ctx->u.md5); in crypto_hash_init()
74 MD5Update(&ctx->u.md5, k_pad, sizeof(k_pad)); in crypto_hash_init()
133 MD5Update(&ctx->u.md5, data, len); in crypto_hash_update()
172 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()
202 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
DDigestFactory.java28 private static Set md5 = new HashSet(); field in DigestFactory
39 md5.add("MD5");
40 md5.add(PKCSObjectIdentifiers.md5.getId()); in PKCSObjectIdentifiers.md5.getId()
62 oids.put("MD5", PKCSObjectIdentifiers.md5);
63 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5); in PKCSObjectIdentifiers.md5.getId()
97 if (md5.contains(digestName)) in getDigest()
140 || (md5.contains(digest1) && md5.contains(digest2)); in isSameDigest()
/external/boringssl/src/ssl/test/runner/
Dprf.go53 hashMD5 := md5.New
84 hashMD5 := md5.New()
218 return finishedHash{sha1.New(), sha1.New(), md5.New(), md5.New(), []byte{}, version, prf10}
260 out := make([]byte, 0, md5.Size+sha1.Size)
268 func finishedSum30(md5, sha1 hash.Hash, masterSecret []byte, magic []byte) []byte { argument
269 md5.Write(magic)
270 md5.Write(masterSecret)
271 md5.Write(ssl30Pad1[:])
272 md5Digest := md5.Sum(nil)
274 md5.Reset()
[all …]
/external/guava/guava-tests/test/com/google/common/hash/
DHashingTest.java49 HashTestUtils.checkAvalanche(Hashing.md5(), 100, 0.4); in testMd5()
50 HashTestUtils.checkNo2BitCharacteristics(Hashing.md5()); in testMd5()
51 HashTestUtils.checkNoFunnels(Hashing.md5()); in testMd5()
52 HashTestUtils.assertInvariants(Hashing.md5()); in testMd5()
53 assertEquals("Hashing.md5()", Hashing.md5().toString()); in testMd5()
333 new ConcatenatedHashFunction(Hashing.md5()), in testConcatenatedHashFunction_equals()
334 new ConcatenatedHashFunction(Hashing.md5())); in testConcatenatedHashFunction_equals()
336 new ConcatenatedHashFunction(Hashing.md5(), Hashing.murmur3_32()), in testConcatenatedHashFunction_equals()
337 new ConcatenatedHashFunction(Hashing.md5(), Hashing.murmur3_32())); in testConcatenatedHashFunction_equals()
341 assertEquals(Hashing.md5().bits(), in testConcatenatedHashFunction_bits()
[all …]
DHashingInputStreamTest.java116 HashCode expectedHash = Hashing.md5().hashBytes(testBytes); in testHash_hashesCorrectly()
117 HashingInputStream in = new HashingInputStream(Hashing.md5(), buffer); in testHash_hashesCorrectly()
127 HashCode expectedHash = Hashing.md5().hashBytes(testBytes); in testHash_hashesCorrectlyReadOutOfBound()
128 HashingInputStream in = new HashingInputStream(Hashing.md5(), buffer); in testHash_hashesCorrectlyReadOutOfBound()
139 HashCode expectedHash = Hashing.md5().hashBytes(new byte[] {'m', 's'}); in testHash_hashesCorrectlyForSkipping()
140 HashingInputStream in = new HashingInputStream(Hashing.md5(), buffer); in testHash_hashesCorrectlyForSkipping()
155 tester.testAllPublicInstanceMethods(new HashingInputStream(Hashing.md5(), buffer)); in testChecksForNull()
/external/boringssl/src/crypto/digest/
Ddigest_test.cc40 static const MD md5 = { "MD5", &EVP_md5, &MD5 }; variable
74 { md5, "", 1, "d41d8cd98f00b204e9800998ecf8427e" },
75 { md5, "a", 1, "0cc175b9c0f1b6a831c399e269772661" },
76 { md5, "abc", 1, "900150983cd24fb0d6963f7d28e17f72" },
77 { md5, "message digest", 1, "f96b697d7cb7938d525a2f31aaf161d0" },
78 { md5, "abcdefghijklmnopqrstuvwxyz", 1,
80 { md5,
83 { md5, "1234567890", 8, "57edf4a22be3c955ac49da2e2107b67a" },
/external/boringssl/src/include/openssl/
Dmd5.h76 OPENSSL_EXPORT int MD5_Init(MD5_CTX *md5);
79 OPENSSL_EXPORT int MD5_Update(MD5_CTX *md5, const void *data, size_t len);
84 OPENSSL_EXPORT int MD5_Final(uint8_t *md, MD5_CTX *md5);
92 OPENSSL_EXPORT void MD5_Transform(MD5_CTX *md5, const uint8_t *block);
/external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/
Dserial_number_generator.py12 from hashlib import md5
14 from md5 import md5
42 def hash_identifier(s, length, pad=True, hasher=md5, prefix='',
60 if length > 26 and hasher is md5:
/external/wpa_supplicant_8/hs20/server/www/
Dspp.php70 $A1 = md5($user . ':' . $realm . ':' . $pw);
71 $A2 = md5($_SERVER['REQUEST_METHOD'] . ':' . $data['uri']);
72 $resp = md5($A1 . ':' . $data['nonce'] . ':' . $data['nc'] . ':' .
87 '",qop="auth",nonce="'.uniqid().'",opaque="'.md5($realm).'"');
109 '",qop="auth",nonce="'.uniqid().'",opaque="'.md5($realm).'"');
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
Ddigest.py35 from hashlib import md5
37 from md5 import md5
75 return md5(content).hexdigest()
89 nonce = md5(content).hexdigest()
94 opaque = md5(content).hexdigest()
113 ha2 = md5(content).hexdigest()
120 if response != md5(chk).hexdigest():
/external/google-breakpad/src/common/mac/
Dfile_id.cc56 MD5Context md5; in FileIdentifier() local
57 MD5Init(&md5); in FileIdentifier()
64 MD5Update(&md5, buffer, static_cast<unsigned>(buffer_size)); in FileIdentifier()
68 MD5Final(identifier, &md5); in FileIdentifier()
/external/antlr/antlr-3.4/runtime/Python/
Dez_setup.py48 from md5 import md5
49 digest = md5(data).hexdigest()
192 from md5 import md5
197 md5_data[base] = md5(f.read()).hexdigest()
/external/boringssl/src/crypto/rc4/
DCMakeLists.txt8 rc4-md5-x86_64.${ASM_EXT}
30 perlasm(rc4-md5-x86_64.${ASM_EXT} asm/rc4-md5-x86_64.pl)
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
DDigitalSignatureTest.java49 MessageDigest md5 = null; in testDigitalSignature_1() local
52 md5 = MessageDigest.getInstance("MD5"); in testDigitalSignature_1()
69 md5.update(pivateKeyEncoding); in testDigitalSignature_1()
72 md5.digest(md5_hash, 0, md5_hash.length); in testDigitalSignature_1()
/external/jetty/src/config/etc/
Dkrb5.ini4 permitted_enctypes = aes128-cts aes256-cts arcfour-hmac-md5
5 default_tgs_enctypes = aes128-cts aes256-cts arcfour-hmac-md5
6 default_tkt_enctypes = aes128-cts aes256-cts arcfour-hmac-md5
/external/libvpx/libvpx/examples/
Ddecode_to_md5.c46 MD5Context md5; in get_image_md5() local
48 MD5Init(&md5); in get_image_md5()
57 MD5Update(&md5, buf, w); in get_image_md5()
62 MD5Final(digest, &md5); in get_image_md5()
/external/skia/tests/
DCodexTest.cpp19 static void md5(const SkBitmap& bm, SkMD5::Digest* digest) { in md5() function
22 SkMD5 md5; in md5() local
25 md5.update(static_cast<uint8_t*>(bm.getAddr(0, y)), rowLen); in md5()
27 md5.finish(*digest); in md5()
59 md5(bm, &digest1); in check()
68 md5(bm, &digest2); in check()
81 md5(bm, &digest3); in check()
/external/boringssl/src/crypto/rc4/asm/
Drc4-md5-x86_64.pl37 my ($rc4,$md5)=(1,1); # what to generate?
38 my $D="#" if (!$md5); # if set to "#", MD5 is stitched into RC4(),
59 if ($rc4 && !$md5) {
62 } elsif ($md5 && !$rc4) {
133 $ctx="%r11" if ($md5); # reassign arguments
137 $inp="%r15" if ($md5);
138 $inp=$in0 if (!$md5);
151 $code.=<<___ if (!$md5);
182 if ($D && !$md5) { # stitch in dummy MD5
183 $md5=1;
[all …]
/external/google-breakpad/src/tools/solaris/dump_syms/
DMakefile43 DUMP_OBJ=dump_symbols.o guid_creator.o dump_syms.o file_id.o md5.o
57 md5.o:../../../common/md5.cc
/external/protobuf/python/
Dez_setup.py71 try: from hashlib import md5
72 except ImportError: from md5 import md5
76 digest = md5(data).hexdigest()
258 md5_data[base] = md5(f.read()).hexdigest()

123456789