Lines Matching refs:resbuf
61 /* Put result from CTX in first 16 bytes following RESBUF. The result
64 IMPORTANT: On some systems it is required that RESBUF is correctly
67 md5_read_ctx (ctx, resbuf)
69 void *resbuf;
71 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
72 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
73 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
74 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
76 return resbuf;
90 prolog according to the standard and write the result to RESBUF.
92 IMPORTANT: On some systems it is required that RESBUF is correctly
95 md5_finish_ctx (ctx, resbuf)
97 void *resbuf;
120 return md5_read_ctx (ctx, resbuf);