/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. 37 class MD5 { 49 MD5();
|
/external/libchrome/base/ |
md5_unittest.cc | 9 #include "base/md5.h" 14 TEST(MD5, DigestToBase16) { 33 TEST(MD5, MD5SumEmtpyData) { 50 TEST(MD5, MD5SumOneByteData) { 67 TEST(MD5, MD5SumLongData) { 88 TEST(MD5, ContextWithEmptyData) { 106 TEST(MD5, ContextWithLongData) { 144 TEST(MD5, MD5StringTestSuite1) { 150 TEST(MD5, MD5StringTestSuite2) { 156 TEST(MD5, MD5StringTestSuite3) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
md5_helper.h | 18 class MD5 { 20 MD5() { 27 // Calculate the width and height to do the md5 check. For the chroma
|
tile_independence_test.cc | 59 ::libvpx_test::MD5 *md5) { 67 md5->Add(img); 75 ::libvpx_test::MD5 md5_fw_order_, md5_inv_order_; 83 // inverted tile ordering. Ensure that the MD5 of the output in both cases 101 // a MD5...
|
test_vector_test.cc | 38 ASSERT_TRUE(md5_file_ != NULL) << "Md5 file open failed. Filename: " 48 // Read correct md5 checksums. 50 ASSERT_NE(res, EOF) << "Read md5 data failed"; 53 ::libvpx_test::MD5 md5_res; 57 // Check md5 match. 59 << "Md5 checksums don't match: frame number = " << frame_number; 67 // The md5 checksums are computed for each frame in the video file. If md5 68 // checksums match the correct md5 data, then the test is passed. Otherwise, 82 // Construct md5 file name [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/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")
|
/external/jetty/src/java/org/eclipse/jetty/util/security/ |
Credential.java | 36 * a Password itself is a Credential, a UnixCrypt or MD5 digest of a a password 39 * This class includes an implementation for unix Crypt an MD5 digest. 65 * known Credential type (eg "CRYPT:" or "MD5:" ) then a Credential of that 74 if (credential.startsWith(MD5.__TYPE)) return new MD5(credential); 116 * MD5 Credentials 118 public static class MD5 extends Credential 122 public static final String __TYPE = "MD5:"; 131 MD5(String digest) 157 if (__md == null) __md = MessageDigest.getInstance("MD5"); 169 MD5 md5 = (MD5) credentials; local [all...] |
/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/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()),
|
/libcore/benchmarks/src/benchmarks/regression/ |
MessageDigestBenchmark.java | 34 public enum Algorithm { MD5, SHA1, SHA256, SHA384, SHA512 };
|
/external/libvpx/libvpx/test/ |
md5_helper.h | 18 class MD5 { 20 MD5() { 27 // Calculate the width and height to do the md5 check. For the chroma
|
tile_independence_test.cc | 59 ::libvpx_test::MD5 *md5) { 67 md5->Add(img); 75 ::libvpx_test::MD5 md5_fw_order_, md5_inv_order_; 83 // inverted tile ordering. Ensure that the MD5 of the output in both cases 101 // a MD5...
|
user_priv_test.cc | 53 libvpx_test::MD5 md5; local 83 md5.Add(img); 88 return string(md5.Get());
|
/external/llvm/lib/Transforms/Utils/ |
SplitModule.cpp | 23 #include "llvm/Support/MD5.h" 53 // Partition by MD5 hash. We only need a few bits for evenness as the number 56 MD5 H; 57 MD5::MD5Result R;
|
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/ |
PBE.java | 37 static final int MD5 = 0; 76 case MD5: 87 throw new IllegalStateException("PKCS5 scheme 1 only supports MD2, MD5 and SHA1."); 99 case MD5: 140 case MD5:
|
/external/conscrypt/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
|
/external/opencv3/3rdparty/ippicv/ |
downloader.cmake | 52 file(MD5 "${OPENCV_ICV_PACKAGE_ARCHIVE}" archive_md5) 54 message(WARNING "ICV: Local copy of ICV package has invalid MD5 hash: ${archive_md5} (expected: ${OPENCV_ICV_PACKAGE_HASH})") 79 file(MD5 "${OPENCV_ICV_PACKAGE_ARCHIVE}" archive_md5) 81 message(FATAL_ERROR "ICV: Downloaded copy of ICV package has invalid MD5 hash: ${archive_md5} (expected: ${OPENCV_ICV_PACKAGE_HASH})")
|