Lines Matching defs:Key
32 uint8_t Key[32] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10, 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff
50 av_twofish_init(cs, Key, kbits[j]);
67 memset(Key, 0, sizeof(Key));
70 av_twofish_init(cs, Key, kbits[j]);
72 memcpy(Key+16,Key,(kbits[j]-128) >> 3);
73 memcpy(Key,rpt,16);
77 // Need to compare to Key here, because the plaintext comes
78 // from rpt but was moved over to Key.
79 if (Key[k] != temp[k]) {
80 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", k, Key[k], temp[k]);