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

1 2 3 4 5 6 7 8

  /external/llvm/unittests/Support/
MD5Test.cpp 1 //===- llvm/unittest/Support/MD5Test.cpp - MD5 tests ----------------------===//
10 // This file implements unit tests for the MD5 functions.
16 #include "llvm/Support/MD5.h"
24 MD5 Hash;
26 MD5::MD5Result MD5Res;
29 MD5::stringifyResult(MD5Res, Res);
34 MD5 Hash;
36 MD5::MD5Result MD5Res;
39 MD5::stringifyResult(MD5Res, Res);
43 TEST(MD5Test, MD5) {
    [all...]
  /external/llvm/include/llvm/Support/
MD5.h 5 * MD5 Message-Digest Algorithm (RFC 1321).
8 * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5
25 * See md5.c for more information.
38 class MD5 {
50 MD5();
69 /// Helper to compute and return lower 64 bits of the given string's MD5 hash.
71 MD5 Hash;
73 llvm::MD5::MD5Result Result;
75 // Return the least significant 8 bytes. Our MD5 implementation returns the
  /external/libchrome/base/
md5_unittest.cc 5 #include "base/md5.h"
16 TEST(MD5, DigestToBase16) {
35 TEST(MD5, MD5SumEmtpyData) {
52 TEST(MD5, MD5SumOneByteData) {
69 TEST(MD5, MD5SumLongData) {
90 TEST(MD5, ContextWithEmptyData) {
108 TEST(MD5, ContextWithLongData) {
146 TEST(MD5, MD5StringTestSuite1) {
152 TEST(MD5, MD5StringTestSuite2) {
158 TEST(MD5, MD5StringTestSuite3)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
AndroidDigestFactoryOpenSSL.java 23 return new OpenSSLDigest.MD5();
OpenSSLDigest.java 74 public static class MD5 extends OpenSSLDigest {
75 public MD5() { super("MD5", 64); }
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
MD5.java 12 public class MD5
14 private MD5()
20 * MD5 HashMac
62 private static final String PREFIX = MD5.class.getName();
70 provider.addAlgorithm("MessageDigest.MD5", PREFIX + "$Digest");
71 provider.addAlgorithm("Alg.Alias.MessageDigest." + PKCSObjectIdentifiers.md5, "MD5");
73 addHMACAlgorithm(provider, "MD5", PREFIX + "$HashMac", PREFIX + "$KeyGenerator");
74 addHMACAlias(provider, "MD5", IANAObjectIdentifiers.hmacMD5);
  /external/llvm/lib/Transforms/Utils/
NameAnonFunctions.cpp 17 #include "llvm/Support/MD5.h"
37 MD5 Hasher;
52 MD5::MD5Result Hash;
55 MD5::stringifyResult(Hash, Result);
  /external/llvm/utils/
UpdateCMakeLists.pl 5 use Digest::MD5;
90 my $digestA = Digest::MD5->new->addfile(*FILE)->hexdigest;
96 my $digestB = Digest::MD5->new->addfile(*FILE)->hexdigest;
  /external/swiftshader/third_party/LLVM/utils/
UpdateCMakeLists.pl 5 use Digest::MD5;
91 my $digestA = Digest::MD5->new->addfile(*FILE)->hexdigest;
97 my $digestB = Digest::MD5->new->addfile(*FILE)->hexdigest;
  /external/v8/tools/
android-sync.sh 51 local HASH=$(md5 $1)
58 MD5=LINUX_MD5
61 MD5=DARWIN_MD5
70 local ANDROID_HASH=$(adb shell "md5 \"$ANDROID_V8/$FILE\"")
71 local HOST_HASH=$($MD5 "$HOST_V8/$FILE")
  /prebuilts/go/darwin-x86/src/crypto/md5/
md5.go 7 // Package md5 implements the MD5 hash algorithm as defined in RFC 1321.
8 package md5 package
16 crypto.RegisterHash(crypto.MD5, New)
19 // The size of an MD5 checksum in bytes.
22 // The blocksize of MD5 in bytes.
50 // New returns a new hash.Hash computing the MD5 checksum.
124 // Sum returns the MD5 checksum of the data.
  /prebuilts/go/linux-x86/src/crypto/md5/
md5.go 7 // Package md5 implements the MD5 hash algorithm as defined in RFC 1321.
8 package md5 package
16 crypto.RegisterHash(crypto.MD5, New)
19 // The size of an MD5 checksum in bytes.
22 // The blocksize of MD5 in bytes.
50 // New returns a new hash.Hash computing the MD5 checksum.
124 // Sum returns the MD5 checksum of the data.
  /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/guava/guava-tests/test/com/google/common/hash/
HashFunctionEnum.java 31 MD5(Hashing.md5()),
  /external/libvpx/libvpx/test/
md5_helper.h 18 class MD5 {
20 MD5() { MD5Init(&md5_); }
25 // Calculate the width and height to do the md5 check. For the chroma
tile_independence_test.cc 57 ::libvpx_test::MD5 *md5) {
65 md5->Add(img);
73 ::libvpx_test::MD5 md5_fw_order_, md5_inv_order_;
81 // inverted tile ordering. Ensure that the MD5 of the output in both cases
99 // a MD5...
user_priv_test.cc 53 libvpx_test::MD5 md5; local
83 md5.Add(img);
88 return string(md5.Get());
  /external/conscrypt/common/src/main/java/org/conscrypt/
EvpMdRef.java 93 if (evpMdRef == MD5.EVP_MD) {
94 return MD5.JCA_NAME;
110 public static final class MD5 {
111 public static final String JCA_NAME = "MD5";
113 public static final long EVP_MD = NativeCrypto.EVP_get_digestbyname("md5");
116 private MD5() {}
OpenSSLMessageDigestJDK.java 160 public static class MD5 extends OpenSSLMessageDigestJDK {
161 public MD5() throws NoSuchAlgorithmException {
162 super(EvpMdRef.MD5.EVP_MD, EvpMdRef.MD5.SIZE_BYTES);
OpenSSLMac.java 162 super(EvpMdRef.MD5.EVP_MD, EvpMdRef.MD5.SIZE_BYTES);
  /external/pdfium/third_party/lcms2-2.6/src/
cmsmd5.c 152 // Create a MD5 object
256 // Assuming io points to an ICC profile, compute and store MD5 checksum
258 // before computing MD5 checksum (per 6.1.13 in ICC spec)
265 cmsHANDLE MD5 = NULL;
291 // Create MD5 object
292 MD5 = MD5alloc(ContextID);
293 if (MD5 == NULL) goto Error;
296 MD5add(MD5, Mem, BytesNeeded);
305 MD5finish(&Icc ->ProfileID, MD5);
311 // "MD5" cannot be other than NULL here, so no need to free i
    [all...]
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
DigitallySigned.java 28 MD5,
  /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);
macho_id.h 42 #include "common/md5.h"
72 // For the given |cpu_type|, and |cpu_subtype| return the MD5 for the mach-o
75 bool MD5(cpu_type_t cpu_type,
87 // Update the MD5 value by examining |size| |bytes| and applying the algorithm
98 // The callback from the MachoWalker for CRC and MD5
122 // The MD5 context
  /hardware/interfaces/keymaster/3.0/vts/functional/
openssl_utils.h 38 case android::hardware::keymaster::V3_0::Digest::MD5:

Completed in 1296 milliseconds

1 2 3 4 5 6 7 8