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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
md5.py 7 warnings.warn("the md5 module is deprecated; use hashlib instead",
10 from hashlib import md5
11 new = md5
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
md5.py 7 warnings.warn("the md5 module is deprecated; use hashlib instead",
10 from hashlib import md5
11 new = md5
  /prebuilts/gdb/darwin-x86/lib/python2.7/
md5.py 7 warnings.warn("the md5 module is deprecated; use hashlib instead",
10 from hashlib import md5
11 new = md5
  /prebuilts/gdb/linux-x86/lib/python2.7/
md5.py 7 warnings.warn("the md5 module is deprecated; use hashlib instead",
10 from hashlib import md5
11 new = md5
  /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
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
11 new = md5
  /external/webrtc/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/syslinux/core/lwip/src/netif/ppp/
randm.c 38 #include "md5.h"
46 #if MD5_SUPPORT /* this module depends on MD5 */
86 MD5_CTX md5; local
89 MD5Init(&md5);
90 MD5Update(&md5, (u_char *)randPool, sizeof(randPool));
92 MD5Update(&md5, (u_char *)randData, randLen);
100 MD5Update(&md5, (u_char *)&sysData, sizeof(sysData));
102 MD5Final((u_char *)randPool, &md5);
118 * XXX Why don't we preserve md5 between blocks and just update it with
125 MD5_CTX md5; local
    [all...]
  /external/boringssl/src/include/openssl/
md5.h 67 /* MD5. */
70 /* MD5_CBLOCK is the block size of MD5. */
73 /* MD5_DIGEST_LENGTH is the length of an MD5 digest. */
76 /* MD5_Init initialises |md5| and returns one. */
77 OPENSSL_EXPORT int MD5_Init(MD5_CTX *md5);
79 /* MD5_Update adds |len| bytes from |data| to |md5| and returns one. */
80 OPENSSL_EXPORT int MD5_Update(MD5_CTX *md5, const void *data, size_t len);
82 /* MD5_Final adds the final padding to |md5| and writes the resulting digest to
85 OPENSSL_EXPORT int MD5_Final(uint8_t *md, MD5_CTX *md5);
87 /* MD5 writes the digest of |len| bytes from |data| to |out| and returns |out|
    [all...]
  /external/libvpx/libvpx/test/
test-data.mk 30 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-001.ivf.md5
32 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-002.ivf.md5
34 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-003.ivf.md5
36 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-004.ivf.md5
38 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-005.ivf.md5
40 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-006.ivf.md5
42 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-007.ivf.md5
44 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-008.ivf.md5
46 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-009.ivf.md5
48 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-00-comprehensive-010.ivf.md5
    [all...]
  /external/libcups/cups/
md5passwd.c 2 * MD5 password support for CUPS.
25 * 'httpMD5()' - Compute the MD5 sum of the username:group:password.
28 char * /* O - MD5 sum */
32 char md5[33]) /* O - MD5 string */
34 _cups_md5_state_t state; /* MD5 state info */
40 * Compute the MD5 sum of the user name, group name, and password.
52 return (httpMD5String(sum, md5));
57 * 'httpMD5Final()' - Combine the MD5 sum of the username, group, and password
66 char md5[33]) /* IO - MD5 sum *
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_md5.py 1 # Testing md5 module
3 warnings.filterwarnings("ignore", "the md5 module is deprecated.*",
7 from md5 import md5
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/gdb/darwin-x86/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
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/gdb/linux-x86/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
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/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
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
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/libmicrohttpd/src/microhttpd/
digestauth.c 28 #include "md5.h"
90 * @param alg The hash algorithm used, can be "md5" or "md5-sess"
107 struct MD5Context md5; local
110 MD5Init (&md5);
111 MD5Update (&md5, username, strlen (username));
112 MD5Update (&md5, ":", 1);
113 MD5Update (&md5, realm, strlen (realm));
114 MD5Update (&md5, ":", 1);
115 MD5Update (&md5, password, strlen (password))
155 struct MD5Context md5; local
405 struct MD5Context md5; local
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/md5/
example_test.go 8 "crypto/md5"
16 h := md5.New()
25 fmt.Printf("%x", md5.Sum(data))
36 h := md5.New()
  /prebuilts/go/linux-x86/src/crypto/md5/
example_test.go 8 "crypto/md5"
16 h := md5.New()
25 fmt.Printf("%x", md5.Sum(data))
36 h := md5.New()
  /external/elfutils/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

Completed in 1234 milliseconds

1 2 3 4 5 6 7 8 91011>>