Lines Matching refs:MD5_BLOCK_LENGTH
44 static u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
74 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
75 need = MD5_BLOCK_LENGTH - have; in MD5Update()
90 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
92 input += MD5_BLOCK_LENGTH; in MD5Update()
93 len -= MD5_BLOCK_LENGTH; in MD5Update()
116 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
117 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
119 padlen += MD5_BLOCK_LENGTH; in MD5Pad()
157 MD5Transform(u_int32_t state[4], const u_int8_t block[MD5_BLOCK_LENGTH]) in MD5Transform() argument
159 u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
164 for (a = 0; a < MD5_BLOCK_LENGTH / 4; a++) { in MD5Transform()