Lines Matching refs:resbuf
65 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf);
67 md5_finish_ctx (struct md5_ctx *ctx, void *resbuf);
98 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf)
100 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
101 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
102 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
103 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
105 return resbuf;
114 md5_finish_ctx (struct md5_ctx *ctx, void *resbuf)
139 return md5_read_ctx (ctx, resbuf);