Home | History | Annotate | Download | only in vtls

Lines Matching refs:MD5pw

1592   struct md5_ctx MD5pw;
1593 md5_init(&MD5pw);
1594 md5_update(&MD5pw, (unsigned int)tmplen, tmp);
1595 md5_digest(&MD5pw, (unsigned int)md5len, md5sum);
1597 gcry_md_hd_t MD5pw;
1598 MD5pw, GCRY_MD_MD5, 0);
1599 gcry_md_write(MD5pw, tmp, tmplen);
1600 memcpy(md5sum, gcry_md_read (MD5pw, 0), md5len);
1601 gcry_md_close(MD5pw);