Lines Matching full:abcd
135 a = pms->abcd[0], b = pms->abcd[1], in md5_process()
136 c = pms->abcd[2], d = pms->abcd[3]; in md5_process()
200 /* Let [abcd k s i] denote the operation in md5_process()
226 /* Let [abcd k s i] denote the operation in md5_process()
252 /* Let [abcd k s t] denote the operation in md5_process()
278 /* Let [abcd k s t] denote the operation in md5_process()
306 pms->abcd[0] += a; in md5_process()
307 pms->abcd[1] += b; in md5_process()
308 pms->abcd[2] += c; in md5_process()
309 pms->abcd[3] += d; in md5_process()
316 pms->abcd[0] = 0x67452301; in md5_init()
317 pms->abcd[1] = /*0xefcdab89*/ T_MASK ^ 0x10325476; in md5_init()
318 pms->abcd[2] = /*0x98badcfe*/ T_MASK ^ 0x67452301; in md5_init()
319 pms->abcd[3] = 0x10325476; in md5_init()
380 digest[i] = (md5_byte_t)(pms->abcd[i >> 2] >> ((i & 3) << 3)); in md5_finish()