Lines Matching refs:md5
22 struct MD5Context md5; member
55 MD5Init(&ctx->u.md5); in crypto_hash_init()
77 MD5Init(&ctx->u.md5); in crypto_hash_init()
78 MD5Update(&ctx->u.md5, key, key_len); in crypto_hash_init()
79 MD5Final(tk, &ctx->u.md5); in crypto_hash_init()
91 MD5Init(&ctx->u.md5); in crypto_hash_init()
92 MD5Update(&ctx->u.md5, k_pad, sizeof(k_pad)); in crypto_hash_init()
151 MD5Update(&ctx->u.md5, data, len); in crypto_hash_update()
200 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()
252 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()
259 MD5Init(&ctx->u.md5); in crypto_hash_finish()
260 MD5Update(&ctx->u.md5, k_pad, sizeof(k_pad)); in crypto_hash_finish()
261 MD5Update(&ctx->u.md5, mac, 16); in crypto_hash_finish()
262 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()