Lines Matching defs:rpt
42 uint8_t temp[32], iv[16], rpt[32] = {0};
51 av_twofish_crypt(cs, temp, rpt, 1, NULL, 0);
60 if (rpt[i] != temp[i]) {
61 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);
68 memset(rpt, 0, sizeof(rpt));
71 av_twofish_crypt(cs, temp, rpt, 1, NULL, 0);
73 memcpy(Key,rpt,16);
74 memcpy(rpt,temp,16);
78 // from rpt but was moved over to Key.
86 if (rct[3 + j][i] != rpt[i]) {
87 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct[3 + j][i], rpt[i]);
92 memset(rpt, 0, sizeof(rpt));
94 av_twofish_crypt(cs, temp, rpt, 2, iv, 0);
98 if (rpt[i] != temp[i]) {
99 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);