Lines Matching refs:MD5_CTX
48 typedef struct md5_ctx MD5_CTX; typedef
50 static void MD5_Init(MD5_CTX *ctx) in MD5_Init()
55 static void MD5_Update(MD5_CTX *ctx, in MD5_Update()
62 static void MD5_Final(unsigned char *digest, MD5_CTX *ctx) in MD5_Final()
74 typedef gcry_md_hd_t MD5_CTX; typedef
76 static void MD5_Init(MD5_CTX *ctx) in MD5_Init()
81 static void MD5_Update(MD5_CTX *ctx, in MD5_Update()
88 static void MD5_Final(unsigned char *digest, MD5_CTX *ctx) in MD5_Final()
110 typedef mbedtls_md5_context MD5_CTX; typedef
112 static void MD5_Init(MD5_CTX *ctx) in MD5_Init()
121 static void MD5_Update(MD5_CTX *ctx, in MD5_Update()
132 static void MD5_Final(unsigned char *digest, MD5_CTX *ctx) in MD5_Final()
155 # define MD5_CTX CC_MD5_CTX macro
160 static void MD5_Init(MD5_CTX *ctx) in MD5_Init()
165 static void MD5_Update(MD5_CTX *ctx, in MD5_Update()
172 static void MD5_Final(unsigned char *digest, MD5_CTX *ctx) in MD5_Final()
188 typedef struct md5_ctx MD5_CTX; typedef
190 static void MD5_Init(MD5_CTX *ctx) in MD5_Init()
198 static void MD5_Update(MD5_CTX *ctx, in MD5_Update()
205 static void MD5_Final(unsigned char *digest, MD5_CTX *ctx) in MD5_Final()
273 typedef struct md5_ctx MD5_CTX; typedef
275 static void MD5_Init(MD5_CTX *ctx);
276 static void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size);
277 static void MD5_Final(unsigned char *result, MD5_CTX *ctx);
328 static const void *body(MD5_CTX *ctx, const void *data, unsigned long size) in body()
436 static void MD5_Init(MD5_CTX *ctx) in MD5_Init()
447 static void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size) in MD5_Update()
482 static void MD5_Final(unsigned char *result, MD5_CTX *ctx) in MD5_Final()
544 sizeof(MD5_CTX),
561 sizeof(MD5_CTX),
573 MD5_CTX ctx; in Curl_md5it()