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

1 2 3 45 6 7 8 91011>>

  /external/fio/
Android.mk 39 crc/sha1.c crc/sha256.c crc/sha512.c crc/md5.c crc/test.c crc/xxhash.c \
  /external/okhttp/okio/okio/src/main/java/okio/
ByteString.java 105 /** Returns the MD5 hash of this byte string. */
106 public ByteString md5() { method in class:ByteString
107 return digest("MD5");
343 return String.format("ByteString[size=%s md5=%s]", data.length, md5().hex());
  /external/wpa_supplicant_8/hs20/client/
Android.mk 54 OBJS += ../../src/crypto/md5-internal.c
  /frameworks/base/core/java/com/android/server/backup/
AccountSyncSettingsBackupHelper.java 109 Log.i(TAG, "Old and new MD5 checksums match. Skipping backup.");
182 * Read the MD5 checksum from the old state.
184 * @return the old MD5 checksum
194 // If the state version is a version we can understand then read the MD5 sum,
195 // otherwise we return an empty byte array for the MD5 sum which will force a
230 MessageDigest md5 = MessageDigest.getInstance("MD5"); local
231 return md5.digest(data);
  /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));
  /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()
  /build/core/combo/
TARGET_linux-arm.mk 136 -Wl,--build-id=md5 \
TARGET_linux-mips.mk 107 -Wl,--build-id=md5 \
TARGET_linux-x86.mk 125 $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += -Wl,--build-id=md5
  /external/boringssl/src/ssl/
d1_srvr.c 123 #include <openssl/md5.h>
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedGenerator.java 43 public static final String DIGEST_MD5 = PKCSObjectIdentifiers.md5.getId();
CMSSignedHelper.java 62 addEntries(OIWObjectIdentifiers.md5WithRSA, "MD5", "RSA");
68 addEntries(PKCSObjectIdentifiers.md5WithRSAEncryption, "MD5", "RSA");
106 digestAlgs.put(PKCSObjectIdentifiers.md5.getId(), "MD5");
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DefaultSignatureAlgorithmIdentifierFinder.java 171 digestOids.put(PKCSObjectIdentifiers.md5WithRSAEncryption, PKCSObjectIdentifiers.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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
RSADigestSigner.java 60 oidMap.put("MD5", PKCSObjectIdentifiers.md5);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DigestSignatureSpi.java 334 static public class MD5
337 public MD5()
340 super(PKCSObjectIdentifiers.md5, AndroidDigestFactory.getMD5(), new PKCS1Encoding(new RSABlindedEngine()));
  /external/elfutils/src/lib/
Makefile 107 crc32_file.$(OBJEXT) md5.$(OBJEXT) sha1.$(OBJEXT) \
303 crc32.c crc32_file.c md5.c sha1.c \
306 noinst_HEADERS = fixedsizehash.h system.h dynamicsizehash.h list.h md5.h \
364 include ./$(DEPDIR)/md5.Po
  /external/guava/guava/src/com/google/common/hash/
Hashing.java 178 * Returns a hash function implementing the MD5 hash algorithm (128 hash bits) by delegating to
179 * the MD5 {@link MessageDigest}.
181 public static HashFunction md5() { method in class:Hashing
182 return Md5Holder.MD5;
186 static final HashFunction MD5 = new MessageDigestHashFunction("MD5", "Hashing.md5()");
  /external/ipsec-tools/src/racoon/
isakmp_frag.c 44 #include <openssl/md5.h>
  /external/iputils/ninfod/
ninfod_name.c 105 # include <openssl/md5.h>
  /external/openssh/
digest-libc.c 29 #include <md5.h>
63 "MD5",
  /external/v8/test/webkit/fast/js/kde/
md5-1.js 28 * md5.jvs 1.0b 27/06/96
30 * Javascript implementation of the RSA Data Security, Inc. MD5
45 // $Id: md5-1.js 11771 2005-12-26 23:07:31Z mjs $
377 /* End of the MD5 algorithm */
394 function MD5(entree)
413 shouldBe("MD5('kde')", "'186cf28b76f2264e9fea8fcf91cb4f5d'");
  /external/wpa_supplicant_8/wpa_supplicant/
nmake.mak 68 $(OBJDIR)\md5.obj \
163 $(OBJDIR)\md5.obj \
  /frameworks/av/media/libstagefright/httplive/
HTTPDownloader.cpp 32 #include <openssl/md5.h>
237 // MD5 functionality is not available on the simulator, treat all

Completed in 1720 milliseconds

1 2 3 45 6 7 8 91011>>