Lines Matching refs:resbuf
67 /* Put result from CTX in first 16 bytes following RESBUF. The result
70 IMPORTANT: On some systems it is required that RESBUF is correctly
73 md5_read_ctx (ctx, resbuf)
75 void *resbuf;
77 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
78 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
79 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
80 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
82 return resbuf;
86 prolog according to the standard and write the result to RESBUF.
88 IMPORTANT: On some systems it is required that RESBUF is correctly
91 md5_finish_ctx (ctx, resbuf)
93 void *resbuf;
115 return md5_read_ctx (ctx, resbuf);