Lines Matching refs:resbuf
61 /* Put result from CTX in first 20 bytes following RESBUF. The result
64 IMPORTANT: On some systems it is required that RESBUF is correctly
67 sha1_read_ctx (ctx, resbuf)
69 void *resbuf;
71 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A);
72 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B);
73 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C);
74 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D);
75 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E);
77 return resbuf;
88 prolog according to the standard and write the result to RESBUF.
90 IMPORTANT: On some systems it is required that RESBUF is correctly
93 sha1_finish_ctx (ctx, resbuf)
95 void *resbuf;
118 return sha1_read_ctx (ctx, resbuf);