Home | History | Annotate | Download | only in crypto

Lines Matching refs:md

33 	hash_state md;
36 md4_init(&md);
38 md4_process(&md, addr[i], len[i]);
39 md4_done(&md, mac);
67 hash_state md;
70 md5_init(&md);
72 md5_process(&md, addr[i], len[i]);
73 md5_done(&md, mac);
80 hash_state md;
83 sha1_init(&md);
85 sha1_process(&md, addr[i], len[i]);
86 sha1_done(&md, mac);
153 hash_state md;
172 if (md5_init(&ctx->u.md) != CRYPT_OK)
176 if (sha1_init(&ctx->u.md) != CRYPT_OK)
207 ctx->error = md5_process(&ctx->u.md, data, len) != CRYPT_OK;
210 ctx->error = sha1_process(&ctx->u.md, data, len) != CRYPT_OK;
246 if (md5_done(&ctx->u.md, mac) != CRYPT_OK)
256 if (sha1_done(&ctx->u.md, mac) != CRYPT_OK)