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]) in MD5Transform() argument
82 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
87 for (a = 0; a < MD5_BLOCK_LENGTH / 4; a++) { in MD5Transform()
185 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
186 need = MD5_BLOCK_LENGTH - have; in MD5Update()
201 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
203 input += MD5_BLOCK_LENGTH; in MD5Update()
204 len -= MD5_BLOCK_LENGTH; in MD5Update()
228 padlen = MD5_BLOCK_LENGTH - in MD5Final()
229 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Final()
231 padlen += MD5_BLOCK_LENGTH; in MD5Final()