Searched defs:md5_context (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/smhasher/src/
H A Dmd5.cpp18 md5_context; typedef in typeref:struct:__anon15452
25 void md5_starts( md5_context *ctx );
34 void md5_update( md5_context *ctx, unsigned char *input, int ilen );
42 void md5_finish( md5_context *ctx, unsigned char output[16] );
71 void md5_hmac_starts( md5_context *ctx, unsigned char *key, int keylen );
80 void md5_hmac_update( md5_context *ctx, unsigned char *input, int ilen );
88 void md5_hmac_finish( md5_context *ctx, unsigned char output[16] );
136 void md5_starts( md5_context *ctx )
147 static void md5_process( md5_context *ctx, unsigned char data[64] )
273 void md5_update( md5_context *ct
[all...]
/external/pdfium/core/src/fdrm/crypto/
H A Dfx_crypt.cpp60 struct md5_context { struct
79 void md5_process( struct md5_context *ctx, const FX_BYTE data[64] )
186 struct md5_context *ctx = (struct md5_context*)context;
196 struct md5_context *ctx = (struct md5_context *)pctx;
231 struct md5_context *ctx = (struct md5_context *)pctx;
247 md5_context ctx;
/external/chromium_org/chrome/browser/web_applications/
H A Dweb_app_win.cc40 base::MD5Context md5_context; local
41 base::MD5Init(&md5_context);
50 base::MD5Update(&md5_context, image_data);
53 base::MD5Final(digest, &md5_context);

Completed in 1210 milliseconds