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

1 2 3 4 5

  /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/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
  /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/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/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);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java 74 public static class MD5 extends OpenSSLDigest {
75 public MD5() { super("MD5", 64); }
  /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/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...]
  /external/lz4/tests/
Makefile 127 MD5:=md5sum
129 MD5:=md5 -r
  /libcore/benchmarks/src/benchmarks/regression/
DigestBenchmark.java 35 public enum Algorithm { MD5, SHA1, SHA256, SHA384, SHA512 };
MessageDigestBenchmark.java 58 public enum Algorithm { MD5, SHA1, SHA256, SHA384, SHA512 };
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
DigitallySigned.java 28 MD5,
  /external/google-breakpad/src/common/mac/
macho_id.cc 227 bool MachoID::MD5(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype, unsigned char identifier[16]) {
  /external/guava/guava-tests/test/com/google/common/hash/
HashFunctionEnum.java 31 MD5(Hashing.md5()),
  /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...]
  /prebuilts/go/darwin-x86/src/crypto/
crypto.go 25 MD5 // import crypto/md5
31 MD5SHA1 // no implementation; MD5+SHA1 used for TLS RSA
44 MD5: 16,
  /prebuilts/go/linux-x86/src/crypto/
crypto.go 25 MD5 // import crypto/md5
31 MD5SHA1 // no implementation; MD5+SHA1 used for TLS RSA
44 MD5: 16,
  /external/boringssl/src/crypto/md5/
md5.c 57 #include <openssl/md5.h>
66 uint8_t *MD5(const uint8_t *data, size_t len, uint8_t *out) {
82 int MD5_Init(MD5_CTX *md5) {
83 OPENSSL_memset(md5, 0, sizeof(MD5_CTX));
84 md5->h[0] = 0x67452301UL;
85 md5->h[1] = 0xefcdab89UL;
86 md5->h[2] = 0x98badcfeUL;
87 md5->h[3] = 0x10325476UL;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DigestSignatureSpi.java 385 static public class MD5
388 public MD5()
391 super(PKCSObjectIdentifiers.md5, AndroidDigestFactory.getMD5(), new PKCS1Encoding(new RSABlindedEngine()));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
PBE.java 41 static final int MD5 = 0;
84 case MD5:
95 throw new IllegalStateException("PKCS5 scheme 1 only supports MD2, MD5 and SHA1.");
107 case MD5:
157 case MD5:
  /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/clang/lib/CodeGen/
CodeGenPGO.cpp 23 #include "llvm/Support/MD5.h"
64 llvm::MD5 MD5;
582 // Pass through MD5 if enough work has built up.
586 MD5.update(llvm::makeArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
596 // Use Working as the hash directly if we never used MD5.
605 MD5.update(Working);
607 // Finalize the MD5 and return the hash.
608 llvm::MD5::MD5Result Result;
609 MD5.final(Result)
    [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 32 #include "llvm/Support/MD5.h"
238 /// Memory buffers have MD5 instead of modification time. We don't
239 /// compute MD5 for on-disk files because we hope that modification time is
241 llvm::MD5::MD5Result MD5;
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 109 enum class PDB_Checksum { None = 0, MD5 = 1, SHA1 = 2 };

Completed in 909 milliseconds

1 2 3 4 5