/external/libvpx/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);
|
md5_utils.c | 13 * MD5Context structure, pass it to MD5Init, call MD5Update as 54 MD5Init(struct MD5Context *ctx) 70 MD5Update(struct MD5Context *ctx, md5byte const *buf, unsigned len) 115 MD5Final(md5byte digest[16], struct MD5Context *ctx)
|
vpxdec.c | 330 MD5Context *md5_ctx = out = malloc(sizeof(MD5Context)); [all...] |
/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);
|
md5-internal.c | 20 typedef struct MD5Context MD5_CTX; 57 * MD5Context structure, pass it to MD5Init, call MD5Update as 84 void MD5Init(struct MD5Context *ctx) 99 void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len) 147 void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
|
crypto_internal.c | 20 struct MD5Context md5;
|
/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);
|
md5c.c | 13 * MD5Context structure, pass it to MD5Init, call MD5Update as 47 MD5Init(struct MD5Context *ctx) 63 MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len) 113 MD5Final(unsigned char digest[16], struct MD5Context *ctx)
|
/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);
|
md5.cc | 16 * MD5Context structure, pass it to MD5Init, call MD5Update as 148 void MD5Init(MD5Context *pCtx){ 162 void MD5Update(MD5Context *pCtx, const void *inbuf, size_t len){ 212 void MD5Final(MD5Digest* digest, MD5Context *pCtx){ 269 MD5Context ctx;
|
/external/chromium/chrome/browser/sync/util/ |
crypto_helpers.h | 19 MD5Context context_;
|
/external/chromium/net/http/ |
http_vary_data.h | 74 MD5Context* context);
|
http_vary_data.cc | 23 MD5Context ctx; 118 MD5Context* ctx) {
|
/external/chromium/chrome/common/ |
visitedlink_common.cc | 82 MD5Context ctx;
|
metrics_helpers.cc | 178 MD5Context ctx;
|
/external/libvpx/libvpx/test/ |
test_vector_test.cc | 88 MD5Context md5;
|
/external/chromium/chrome/browser/safe_browsing/ |
safe_browsing_store_file.cc | 56 bool ReadArray(T* ptr, size_t nmemb, FILE* fp, MD5Context* context) { 70 bool WriteArray(const T* ptr, size_t nmemb, FILE* fp, MD5Context* context) { 86 FILE* fp, MD5Context* context) { 110 bool WriteVector(const std::vector<T>& values, FILE* fp, MD5Context* context) { 124 FILE* fp, MD5Context* context) { 139 FILE* fp, MD5Context* context) { 186 MD5Context* context) { 496 MD5Context context; 615 MD5Context context;
|
prefix_set.cc | 190 MD5Context context; 243 MD5Context context;
|
prefix_set_unittest.cc | 102 MD5Context context;
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_codec.h | 153 MD5Context md5_context_;
|
/external/dropbear/ |
keyimport.c | 542 struct MD5Context md5c; [all...] |
/external/chromium/chrome/browser/metrics/ |
metrics_service.cc | [all...] |