HomeSort by relevance Sort by last modified time
    Searched refs:MD5 (Results 26 - 50 of 146) sorted by null

12 3 4 5 6

  /libcore/benchmarks/src/benchmarks/regression/
DigestBenchmark.java 35 public enum Algorithm { MD5, SHA1, SHA256, SHA384, SHA512 };
  /external/llvm/lib/Support/
MD5.cpp 5 * MD5 Message-Digest Algorithm (RFC 1321).
8 * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5
42 #include "llvm/Support/MD5.h"
46 // The basic MD5 functions.
56 // The MD5 transformation for all four rounds.
75 const uint8_t *MD5::body(ArrayRef<uint8_t> Data) {
182 MD5::MD5()
187 void MD5::update(ArrayRef<uint8_t> Data) {
225 void MD5::update(StringRef Str)
    [all...]
Android.mk 44 MD5.cpp \
  /external/llvm/include/llvm/ProfileData/
InstrProf.h 27 #include "llvm/Support/MD5.h"
222 // A map from MD5 hash keys to function name strings.
224 // A map from function runtime address to function name MD5 hash.
252 /// Map a function address to its name's MD5 hash. This interface
262 /// Return function's PGO name from the name's md5 hash value.
488 MD5,
490 Last = MD5
494 MD5 Hash;
496 llvm::MD5::MD5Result Result;
498 // Return the least significant 8 bytes. Our MD5 implementation returns th
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
RC2.java 147 super(new CBCBlockCipher(new RC2Engine()), PKCS5S1, MD5, 64, 8);
209 super("PBEwithMD5andRC2", PKCSObjectIdentifiers.pbeWithMD5AndRC2_CBC, true, PKCS5S1, MD5, 64, 64);
AES.java 401 super("PBEWithMD5And128BitAES-CBC-OpenSSL", null, true, OPENSSL, MD5, 128, 128);
413 super("PBEWithMD5And192BitAES-CBC-OpenSSL", null, true, OPENSSL, MD5, 192, 128);
425 super("PBEWithMD5And256BitAES-CBC-OpenSSL", null, true, OPENSSL, MD5, 256, 128);
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLMessageDigestJDK.java 157 public static class MD5 extends OpenSSLMessageDigestJDK {
158 private static final long EVP_MD = NativeCrypto.EVP_get_digestbyname("md5");
160 public MD5() throws NoSuchAlgorithmException {
  /external/libvpx/libvpx/test/
vp9_frame_parallel_test.cc 34 // md5 sum for decoded frames which does not include skipped frames.
41 // the md5 of the decoded frames which does not include skipped frames.
55 libvpx_test::MD5 md5; local
86 md5.Add(img);
93 return string(md5.Get());
124 // md5 sum for decoded frames which does not include corrupted frames.
130 // Decodes |filename| with |num_threads|. Return the md5 of the decoded
142 libvpx_test::MD5 md5; local
    [all...]
test_vector_test.cc 56 ASSERT_TRUE(md5_file_ != NULL) << "Md5 file open failed. Filename: "
66 // Read correct md5 checksums.
68 ASSERT_NE(res, EOF) << "Read md5 data failed";
71 ::libvpx_test::MD5 md5_res;
75 // Check md5 match.
77 << "Md5 checksums don't match: frame number = " << frame_number;
85 // The md5 checksums are computed for each frame in the video file. If md5
86 // checksums match the correct md5 data, then the test is passed. Otherwise,
123 // Construct md5 file name
    [all...]
vp9_ethread_test.cc 94 ::libvpx_test::MD5 md5_res;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
grammar.rb 9 require 'digest/md5'
10 MD5 = Digest::MD5
12 require 'md5'
308 unless test( ?f, @path ) and MD5.digest( @source ) == MD5.digest( File.read( @path ) )
  /external/guava/guava-tests/benchmark/com/google/common/hash/
MessageDigestAlgorithmBenchmark.java 36 * <li>algorithm: the algorithm to hash with (e.g. MD5, SHA1, etc.).
64 MD5("MD5", Hashing.md5()),
  /external/webrtc/webrtc/base/
messagedigest.h 31 // Returns the digest output size (e.g. 16 bytes for MD5).
73 // Shorthand way to compute a hex-encoded hash using MD5.
74 inline std::string MD5(const std::string& input) {
  /external/clang/lib/StaticAnalyzer/Core/
IssueHash.cpp 21 #include "llvm/Support/MD5.h"
163 llvm::MD5 Hash;
164 llvm::MD5::MD5Result MD5Res;
169 llvm::MD5::stringifyResult(MD5Res, Res);
  /libcore/ojluni/src/main/java/sun/security/ssl/
SignatureAndHashAlgorithm.java 52 * none(0), md5(1), sha1(2), sha224(3), sha256(4), sha384(5),
317 MD5( "md5", "MD5", 1, 16),
346 algorithm = MD5;
415 supports(HashAlgorithm.MD5, SignatureAlgorithm.RSA,
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
tracker_file.py 252 """Creates an MD5 hex digest of the parameters for a rewrite call.
275 MD5 hex digest Hash of the input parameters, or None if required parameters
287 md5_hash = hashlib.md5()
300 rewrite_params_hash: MD5 hex digest of rewrite call parameters constructed
334 rewrite_params_hash: MD5 hex digest of rewrite call parameters constructed
  /external/llvm/lib/CodeGen/AsmPrinter/
DIEHash.h 19 #include "llvm/Support/MD5.h"
153 MD5 Hash;
  /external/skia/tests/
MD5Test.cpp 62 DEF_TEST(MD5, reporter) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
vp9_thread_test.cc 100 // Decodes |filename| with |num_threads|. Returns the md5 of the decoded frames.
109 libvpx_test::MD5 md5; local
123 md5.Add(img);
126 return string(md5.Get());
  /libcore/luni/src/test/java/com/android/org/bouncycastle/crypto/digests/
DigestTest.java 102 * Tests the MD5 implementation.
106 Digest newDigest = new OpenSSLDigest.MD5();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DigestSignatureSpi.java 353 static public class MD5
356 public MD5()
359 super(PKCSObjectIdentifiers.md5, AndroidDigestFactory.getMD5(), new PKCS1Encoding(new RSABlindedEngine()));
  /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/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'");
  /system/security/keystore/
blob.cpp 119 MD5(mBlob.digested, digestedLength, mBlob.digest);
195 MD5(mBlob.digested, digestedLength, computedDigest);
  /external/dhcpcd-6.8.2/
configure 73 --without-md5) MD5=no;;
955 if [ -z "$MD5" ]; then
960 #include <md5.h>
975 MD5=yes
977 MD5="yes (-lmd)"
980 MD5=no
982 echo "$MD5"
985 if [ "$MD5" = no ]; then
986 echo "MD5_SRC= crypt/md5.c" >>$CONFIG_M
    [all...]

Completed in 2159 milliseconds

12 3 4 5 6