Lines Matching refs:md5
25 struct MD5Context md5; member
49 MD5Init(&ctx->u.md5); in crypto_hash_init()
56 MD5Init(&ctx->u.md5); in crypto_hash_init()
57 MD5Update(&ctx->u.md5, key, key_len); in crypto_hash_init()
58 MD5Final(tk, &ctx->u.md5); in crypto_hash_init()
69 MD5Init(&ctx->u.md5); in crypto_hash_init()
70 MD5Update(&ctx->u.md5, k_pad, sizeof(k_pad)); in crypto_hash_init()
107 MD5Update(&ctx->u.md5, data, len); in crypto_hash_update()
138 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()
157 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()
164 MD5Init(&ctx->u.md5); in crypto_hash_finish()
165 MD5Update(&ctx->u.md5, k_pad, sizeof(k_pad)); in crypto_hash_finish()
166 MD5Update(&ctx->u.md5, mac, 16); in crypto_hash_finish()
167 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()