Lines Matching defs:packetkey
155 uint64_t packetkey;
176 packetkey = AV_RN64(&qwords[num_qwords * 8 - 8]);
177 packetkey ^= rc4buff[7];
179 av_des_crypt(des, (uint8_t *)&packetkey, (uint8_t *)&packetkey, 1, NULL, 1);
180 packetkey ^= rc4buff[6];
182 av_rc4_init(rc4, (uint8_t *)&packetkey, 64, 1);
189 packetkey = (packetkey << 32) | (packetkey >> 32);
190 packetkey = av_le2ne64(packetkey);
191 packetkey = multiswap_dec(ms_keys, ms_state, packetkey);
192 AV_WL64(qwords, packetkey);