Lines Matching refs:temp
42 uint8_t temp[32], iv[16], rpt[32] = {0};
51 av_twofish_crypt(cs, temp, rpt, 1, NULL, 0);
53 if (rct[j][i] != temp[i]) {
54 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct[j][i], temp[i]);
58 av_twofish_crypt(cs, temp, rct[j], 1, NULL, 1);
60 if (rpt[i] != temp[i]) {
61 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);
71 av_twofish_crypt(cs, temp, rpt, 1, NULL, 0);
74 memcpy(rpt,temp,16);
75 av_twofish_crypt(cs, temp, temp, 1, NULL, 1);
79 if (Key[k] != temp[k]) {
80 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", k, Key[k], temp[k]);
94 av_twofish_crypt(cs, temp, rpt, 2, iv, 0);
96 av_twofish_crypt(cs, temp, temp, 2, iv, 1);
98 if (rpt[i] != temp[i]) {
99 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);