Lines Matching refs:md5
58 struct MD5Context md5; member
82 MD5Init(&ctx->u.md5); in crypto_hash_init()
89 MD5Init(&ctx->u.md5); in crypto_hash_init()
90 MD5Update(&ctx->u.md5, key, key_len); in crypto_hash_init()
91 MD5Final(tk, &ctx->u.md5); in crypto_hash_init()
102 MD5Init(&ctx->u.md5); in crypto_hash_init()
103 MD5Update(&ctx->u.md5, k_pad, sizeof(k_pad)); in crypto_hash_init()
140 MD5Update(&ctx->u.md5, data, len); in crypto_hash_update()
171 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()
190 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()
197 MD5Init(&ctx->u.md5); in crypto_hash_finish()
198 MD5Update(&ctx->u.md5, k_pad, sizeof(k_pad)); in crypto_hash_finish()
199 MD5Update(&ctx->u.md5, mac, 16); in crypto_hash_finish()
200 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish()