/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
MD5Test.cpp | 1 //===- llvm/unittest/Support/MD5Test.cpp - MD5 tests ----------------------===// 10 // This file implements unit tests for the MD5 functions. 14 #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/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/curl/docs/cmdline-opts/ |
hostpubmd5.d | 2 Arg: <md5> 3 Help: Acceptable MD5 hash of the host public key 8 be the 128 bit MD5 checksum of the remote host's public key, curl will refuse
|
/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/swiftshader/third_party/llvm-subzero/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. 39 class MD5 { 51 MD5(); 73 /// Helper to compute and return lower 64 bits of the given string's MD5 hash. 75 MD5 Hash; 77 llvm::MD5::MD5Result Result; 79 // Return the least significant 8 bytes. Our MD5 implementation returns the
|
/external/skia/tools/skqp/ |
upload_model | 17 MD5=$(md5sum < "$1" | head -c 32) 18 if ! grep -q "$MD5" "$EXTANT"; then 19 URL="gs://${BUCKET}/$MD5" 22 echo $MD5 47 MD5=$(upload "$FILENAME") 48 printf '%s;%s\n' "$MD5" "$FILENAME" >> "$FILES"
|
/external/skqp/tools/skqp/ |
upload_model | 17 MD5=$(md5sum < "$1" | head -c 32) 18 if ! grep -q "$MD5" "$EXTANT"; then 19 URL="gs://${BUCKET}/$MD5" 22 echo $MD5 47 MD5=$(upload "$FILENAME") 48 printf '%s;%s\n' "$MD5" "$FILENAME" >> "$FILES"
|
/external/swiftshader/third_party/llvm-7.0/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. 41 class MD5 { 66 // Our MD5 implementation returns the result in little endian, so the low 82 MD5(); 104 inline bool operator==(const MD5::MD5Result &LHS, const MD5::MD5Result &RHS) { 108 /// Helper to compute and return lower 64 bits of the given string's MD5 hash. 112 MD5 Hash [all...] |
/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/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/digests/ |
AndroidDigestFactoryOpenSSL.java | 27 return new OpenSSLDigest.MD5();
|
OpenSSLDigest.java | 79 public static class MD5 extends OpenSSLDigest { 80 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/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/digest/ |
MD5.java | 16 public class MD5 18 private MD5() 24 * MD5 HashMac 76 private static final String PREFIX = MD5.class.getName(); 84 provider.addAlgorithm("MessageDigest.MD5", PREFIX + "$Digest"); 85 provider.addAlgorithm("Alg.Alias.MessageDigest." + PKCSObjectIdentifiers.md5, "MD5"); 87 addHMACAlgorithm(provider, "MD5", PREFIX + "$HashMac", PREFIX + "$KeyGenerator"); 88 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/swiftshader/third_party/llvm-7.0/llvm/test/MC/ELF/ |
debug-md5-err.s | 8 # Missing md5 keyword. 14 .file 3 "dir2" "bar" md5 "ff" 18 .file 4 "dir3" "foo" md5 ffeeddccbbaa99887766554433221100 21 # CHECK: [[@LINE+1]]:{{[0-9]+}}: error: MD5 checksum specified, but no file number 22 .file "baz" md5 0xffeeddccbbaa99887766554433221100 24 # Inconsistent use of MD5 option. Note: .file 1 did not supply one. 25 # CHECK: [[@LINE+1]]:{{[0-9]+}}: warning: inconsistent use of MD5 checksums 26 .file 5 "bax" md5 0xffeeddccbbaa99887766554433221100
|
/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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
NameAnonGlobals.cpp | 19 #include "llvm/Support/MD5.h" 40 MD5 Hasher; 55 MD5::MD5Result Hash; 58 MD5::stringifyResult(Hash, Result);
|
/external/swiftshader/third_party/llvm-7.0/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/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/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/libaom/libaom/test/ |
md5_helper.h | 19 class MD5 { 21 MD5() { MD5Init(&md5_); } 26 // Calculate the width and height to do the md5 check. For the chroma
|