Searched refs:MDS_mul (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | twofish.c | 187 static uint32_t MDS_mul(AVTWOFISH *cs, uint32_t X) in MDS_mul() function 215 t0 = MDS_mul(cs, P[0]); in twofish_encrypt() 216 t1 = MDS_mul(cs, LR(P[1], 8)); in twofish_encrypt() 219 t0 = MDS_mul(cs, P[2]); in twofish_encrypt() 220 t1 = MDS_mul(cs, LR(P[3], 8)); in twofish_encrypt() 243 t0 = MDS_mul(cs, P[2]); in twofish_decrypt() 244 t1 = MDS_mul(cs, LR(P[3], 8)); in twofish_decrypt() 247 t0 = MDS_mul(cs, P[0]); in twofish_decrypt() 248 t1 = MDS_mul(cs, LR(P[1], 8)); in twofish_decrypt()
|