Lines Matching refs:MD5_BLOCK_LENGTH
40 static u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
71 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
72 need = MD5_BLOCK_LENGTH - have; in MD5Update()
87 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
89 input += MD5_BLOCK_LENGTH; in MD5Update()
90 len -= MD5_BLOCK_LENGTH; in MD5Update()
114 padlen = MD5_BLOCK_LENGTH - in MD5Final()
115 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Final()
117 padlen += MD5_BLOCK_LENGTH; in MD5Final()
145 MD5Transform(u_int32_t state[4], const u_int8_t block[MD5_BLOCK_LENGTH]) in MD5Transform() argument
147 u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
152 for (a = 0; a < MD5_BLOCK_LENGTH / 4; a++) { in MD5Transform()