HomeSort by relevance Sort by last modified time
    Searched defs:md5 (Results 51 - 75 of 139) sorted by null

1 23 4 5 6

  /frameworks/base/obex/javax/obex/
ObexHelper.java 932 MessageDigest md5 = MessageDigest.getInstance("MD5"); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uuid.py 19 # make a UUID using an MD5 hash of a namespace UUID and a name
526 """Generate a UUID from the MD5 hash of a namespace UUID and a name."""
527 from hashlib import md5 namespace
528 hash = md5(namespace.bytes + name).digest()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uuid.py 19 # make a UUID using an MD5 hash of a namespace UUID and a name
526 """Generate a UUID from the MD5 hash of a namespace UUID and a name."""
527 from hashlib import md5 namespace
528 hash = md5(namespace.bytes + name).digest()
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCheckPage.java 266 String md5 = mWizard.getCertMd5Fingerprint(); local
270 sb.append(String.format("<li>MD5 : %s</li>", md5));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PKCSObjectIdentifiers.java 116 // md5 OBJECT IDENTIFIER ::=
120 static final ASN1ObjectIdentifier md5 = digestAlgorithm.branch("5"); field in interface:PKCSObjectIdentifiers
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 46 from hashlib import sha1 as _sha, md5 as _md5
49 import md5 namespace
51 _md5 = md5.new
459 """Only do qop='auth' and MD5, since that
469 self.challenge['algorithm'] = self.challenge.get('algorithm', 'MD5').upper()
470 if self.challenge['algorithm'] != 'MD5':
531 if self.challenge['algorithm'] not in ['HMAC-SHA-1', 'HMAC-MD5']:
534 if self.challenge['pw-algorithm'] not in ['SHA-1', 'MD5']:
536 if self.challenge['algorithm'] == 'HMAC-MD5':
540 if self.challenge['pw-algorithm'] == 'MD5'
    [all...]
  /external/chromium_org/third_party/ply/
yacc.py 2798 from hashlib import md5 namespace
2800 from md5 import md5 namespace
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_encrypt.cpp 24 FX_BYTE md5[100];
25 CRYPT_MD5Start(md5);
26 CRYPT_MD5Update(md5, passcode, 32);
28 CRYPT_MD5Update(md5, (FX_LPBYTE)(FX_LPCSTR)okey, okey.GetLength());
30 CRYPT_MD5Update(md5, (FX_LPBYTE)&perm, 4);
33 CRYPT_MD5Update(md5, (FX_LPBYTE)(FX_LPCSTR)id, id.GetLength());
37 CRYPT_MD5Update(md5, (FX_LPBYTE)&tag, 4);
40 CRYPT_MD5Finish(md5, digest);
416 FX_BYTE md5[100]; local
417 CRYPT_MD5Start(md5);
562 FX_BYTE md5[100]; local
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
ssl3prot.h 241 /* SSL3HashesIndividually contains a combination MD5/SHA1 hash, as used in TLS
244 PRUint8 md5[16]; member in struct:__anon13686
  /external/chromium_org/third_party/freetype/src/base/
ftobjs.c 52 /* the maximum level of warnings: `md5.c' is non-FreeType */
58 /* it's easiest to include `md5.c' directly */
60 #include "md5.c"
4091 unsigned char md5[16]; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
speed.c 141 #include <openssl/md5.h>
251 "md2","mdc2","md4","md5","hmac(md5)","sha1","rmd160","rc4",
386 unsigned char md5[MD5_DIGEST_LENGTH]; local
794 if (strcmp(*argv,"md5") == 0) doit[D_MD5]=1;
1022 BIO_printf(bio_err,"md5 ");
    [all...]
  /external/chromium_org/third_party/re2/lib/codereview/
codereview.py 2675 from hashlib import md5 namespace
2677 from md5 import md5 namespace
    [all...]
  /external/chromium_org/tools/symsrc/
pefile.py 37 sha1, sha256, sha512, md5 = None, None, None, None
44 md5 = hashlib.md5 variable
52 import md5 namespace
53 md5 = md5.new variable
907 """Get the MD5 hex-digest of the section's data."""
909 if md5 is not None:
910 return md5( self.data ).hexdigest()
    [all...]
  /external/freetype/src/base/
ftobjs.c 52 /* the maximum level of warnings: `md5.c' is non-FreeType */
58 /* it's easiest to include `md5.c' directly */
59 #include "md5.c"
4114 unsigned char md5[16]; local
    [all...]
  /external/libpng/
png.c 2144 png_uint_32 md5[4]; member in struct:__anon28428
    [all...]
  /external/openssl/apps/
speed.c 141 #include <openssl/md5.h>
251 "md2","mdc2","md4","md5","hmac(md5)","sha1","rmd160","rc4",
386 unsigned char md5[MD5_DIGEST_LENGTH]; local
794 if (strcmp(*argv,"md5") == 0) doit[D_MD5]=1;
1022 BIO_printf(bio_err,"md5 ");
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftobjs.c 52 /* the maximum level of warnings: `md5.c' is non-FreeType */
58 /* it's easiest to include `md5.c' directly */
60 #include "md5.c"
4094 unsigned char md5[16]; local
    [all...]
  /external/regex-re2/lib/codereview/
codereview.py 2675 from hashlib import md5 namespace
2677 from md5 import md5 namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 7 from hashlib import md5 namespace
27 return md5(data).hexdigest()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 7 from hashlib import md5 namespace
27 return md5(data).hexdigest()
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar 
  /external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar 
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 

Completed in 1507 milliseconds

1 23 4 5 6