Home | History | Annotate | Download | only in lib

Lines Matching defs:bytes

44 /* This array contains the bytes used to pad the buffer to the next
63 /* Put result from CTX in first 20 bytes following RESBUF. The result
87 /* Process the remaining bytes in the internal buffer and the usual
95 /* Take yet unprocessed bytes into account. */
96 sha1_uint32 bytes = ctx->buflen;
99 /* Now count remaining bytes. */
100 ctx->total[0] += bytes;
101 if (ctx->total[0] < bytes)
104 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
105 memcpy (&ctx->buffer[bytes], fillbuf, pad);
111 be64_copy (&ctx->buffer[bytes + pad], bit_length);
113 /* Process last bytes. */
114 sha1_process_block (ctx->buffer, bytes + pad + 8, ctx);
174 /* Move remaining bytes in internal buffer. */
211 /* Process LEN bytes of BUFFER, accumulating context into CTX.
230 number of bytes. Do a double word increment. */
235 /* Process all bytes in the buffer with 64 bytes in each round of