HomeSort by relevance Sort by last modified time
    Searched defs:MD5Context (Results 1 - 6 of 6) sorted by null

  /external/chromium/base/
md5.h 25 // MD5Context ctx; // intermediate MD5 data: do not use
43 typedef char MD5Context[88];
51 BASE_API void MD5Init(MD5Context* context);
56 BASE_API void MD5Update(MD5Context* context, const void* buf, size_t len);
59 BASE_API void MD5Final(MD5Digest* digest, MD5Context* pCtx);
  /external/wpa_supplicant_8/src/crypto/
md5_i.h 12 struct MD5Context {
18 void MD5Init(struct MD5Context *context);
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
  /external/libvpx/
md5_utils.h 13 * MD5Context structure, pass it to MD5Init, call MD5Update as
29 typedef struct MD5Context MD5Context;
30 struct MD5Context
37 void MD5Init(struct MD5Context *context);
38 void MD5Update(struct MD5Context *context, md5byte const *buf, unsigned len);
39 void MD5Final(unsigned char digest[16], struct MD5Context *context);
  /external/chromium/third_party/libjingle/source/talk/base/
md5.h 12 * MD5Context structure, pass it to MD5Init, call MD5Update as
26 typedef struct MD5Context MD5_CTX;
30 struct MD5Context {
36 void MD5Init(struct MD5Context *context);
37 void MD5Update(struct MD5Context *context, md5byte const *buf, unsigned len);
38 void MD5Final(unsigned char digest[16], struct MD5Context *context);
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
md5.c 112 struct MD5Context {
119 static void MD5Init(struct MD5Context *context);
120 static void MD5Update(struct MD5Context *context, unsigned char const *buf,
122 static void MD5Final(unsigned char digest[16], struct MD5Context *context);
127 typedef struct MD5Context MD5_CTX;
162 * MD5Context structure, pass it to MD5Init, call MD5Update as
189 void MD5Init(struct MD5Context *ctx)
204 void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len)
252 void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
crypto_internal.c 43 struct MD5Context {
59 struct MD5Context md5;

Completed in 446 milliseconds