Lines Matching refs:bytes
31 * To compute the message digest of a chunk of bytes, declare an
33 * needed on buffers full of bytes, and then call MD5Final, which
68 ctx->bytes[0] = 0;
69 ctx->bytes[1] = 0;
94 * the data and converts bytes into longwords for this routine.
181 * of bytes.
189 t = ctx->bytes[0];
190 if ((ctx->bytes[0] = t + len) < t)
191 ctx->bytes[1]++; /* Carry from low to high */
214 /* Handle any remaining bytes of data. */
224 int count = ctx->bytes[0] & 0x3f; /* Number of bytes in ctx->in */
230 /* Bytes of padding needed to make 56 bytes (-8..55) */
244 ctx->in[14] = ctx->bytes[0] << 3;
245 ctx->in[15] = ctx->bytes[1] << 3 | ctx->bytes[0] >> 29;