Lines Matching refs:MD5_BLOCK_LENGTH
41 static uint8_t PADDING[MD5_BLOCK_LENGTH] = {
80 MD5Transform(uint32_t state[4], const uint8_t block[MD5_BLOCK_LENGTH])
82 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4];
87 for (a = 0; a < MD5_BLOCK_LENGTH / 4; a++) {
185 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1));
186 need = MD5_BLOCK_LENGTH - have;
200 /* Process data in MD5_BLOCK_LENGTH-byte chunks. */
201 while (len >= MD5_BLOCK_LENGTH) {
203 input += MD5_BLOCK_LENGTH;
204 len -= MD5_BLOCK_LENGTH;
228 padlen = MD5_BLOCK_LENGTH -
229 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1));
231 padlen += MD5_BLOCK_LENGTH;