Searched refs:MD5_BLOCK_LENGTH (Results 1 – 3 of 3) sorted by relevance
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[all …]
20 #define MD5_BLOCK_LENGTH 64 macro27 u_int8_t buffer[MD5_BLOCK_LENGTH]; /* input buffer */36 void MD5Transform(u_int32_t [4], const u_int8_t [MD5_BLOCK_LENGTH])38 __attribute__((__bounded__(__minbytes__,2,MD5_BLOCK_LENGTH)));
68 MD5_BLOCK_LENGTH,