Lines Matching refs:MD5_CTX
38 typedef struct md5_ctx MD5_CTX; typedef
40 static void MD5_Init(MD5_CTX * ctx) in MD5_Init()
45 static void MD5_Update(MD5_CTX * ctx, in MD5_Update()
52 static void MD5_Final(unsigned char digest[16], MD5_CTX * ctx) in MD5_Final()
64 typedef gcry_md_hd_t MD5_CTX; typedef
66 static void MD5_Init(MD5_CTX * ctx) in MD5_Init()
71 static void MD5_Update(MD5_CTX * ctx, in MD5_Update()
78 static void MD5_Final(unsigned char digest[16], MD5_CTX * ctx) in MD5_Final()
103 # define MD5_CTX CC_MD5_CTX macro
108 static void MD5_Init(MD5_CTX *ctx) in MD5_Init()
113 static void MD5_Update(MD5_CTX *ctx, in MD5_Update()
120 static void MD5_Final(unsigned char digest[16], MD5_CTX *ctx) in MD5_Final()
135 } MD5_CTX; typedef
137 static void MD5_Init(MD5_CTX *ctx) in MD5_Init()
145 static void MD5_Update(MD5_CTX *ctx, in MD5_Update()
152 static void MD5_Final(unsigned char digest[16], MD5_CTX *ctx) in MD5_Final()
224 } MD5_CTX; typedef
226 static void MD5_Init(MD5_CTX *ctx);
227 static void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size);
228 static void MD5_Final(unsigned char *result, MD5_CTX *ctx);
279 static const void *body(MD5_CTX *ctx, const void *data, unsigned long size) in body()
386 static void MD5_Init(MD5_CTX *ctx) in MD5_Init()
397 static void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size) in MD5_Update()
431 static void MD5_Final(unsigned char *result, MD5_CTX *ctx) in MD5_Final()
489 sizeof(MD5_CTX), /* Size of hash context structure. */
500 sizeof(MD5_CTX), /* Size of digest context struct */
511 MD5_CTX ctx; in Curl_md5it()