MD5_Update
extern void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size);
MD5_Update(&context, k_ipad, 64); /* start with inner pad */
MD5_Update(&context, (unsigned char*)text, text_len); /* then text of datagram */
MD5_Update(&context, k_opad, 64); /* start with outer pad */
MD5_Update(&context, digest, 16); /* then results of 1st
MD5_Update(&context, text, text_len);
MD5_Update(&tctx, (unsigned char*)key, key_len);
void MD5_Update PROTO_LIST
MD5_Update (context, PADDING, padLen);
MD5_Update (context, bits, 8);
MD5_Update(&m_MD5Context, (const unsigned char *) pData, nBytes);
MD5_Update(&context, (void *)(value.String()), value.Length());
#define MD5Update(c,data, len) MD5_Update(c,data,len)
void MD5_Update(MD5_CTX *c, const unsigned char *data, unsigned long len);
void MD5_Update();
MD5_Update(&ctx, rnd, 16);