Searched refs:round_key (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Daes.c36 // Note: round_key[16] is accessed in the init code, but this only
38 av_aes_block round_key[15]; member in struct:AVAES
71 const av_aes_block *round_key)
73 dst->u64[0] = src->u64[0] ^ round_key->u64[0];
74 dst->u64[1] = src->u64[1] ^ round_key->u64[1];
78 const av_aes_block *round_key)
80 dst->u64[0] = AV_RN64(src) ^ round_key->u64[0];
81 dst->u64[1] = AV_RN64(src + 8) ^ round_key->u64[1];
85 const av_aes_block *round_key)
87 AV_WN64(dst, src->u64[0] ^ round_key
70 addkey(av_aes_block *dst, const av_aes_block *src, const av_aes_block *round_key) argument
77 addkey_s(av_aes_block *dst, const uint8_t *src, const av_aes_block *round_key) argument
84 addkey_d(uint8_t *dst, const av_aes_block *src, const av_aes_block *round_key) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Daes.c35 // Note: round_key[16] is accessed in the init code, but this only
37 av_aes_block round_key[15]; member in struct:AVAES
65 const av_aes_block *round_key)
67 dst->u64[0] = src->u64[0] ^ round_key->u64[0];
68 dst->u64[1] = src->u64[1] ^ round_key->u64[1];
72 const av_aes_block *round_key)
74 dst->u64[0] = AV_RN64(src) ^ round_key->u64[0];
75 dst->u64[1] = AV_RN64(src + 8) ^ round_key->u64[1];
79 const av_aes_block *round_key)
81 AV_WN64(dst, src->u64[0] ^ round_key
64 addkey(av_aes_block *dst, const av_aes_block *src, const av_aes_block *round_key) argument
71 addkey_s(av_aes_block *dst, const uint8_t *src, const av_aes_block *round_key) argument
78 addkey_d(uint8_t *dst, const av_aes_block *src, const av_aes_block *round_key) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rt2860/common/
H A Dcmm_aes.c352 unsigned char round_key[16]; local
355 round_key[i] = key[i];
359 xor_128(round_key, data, ciphertext);
360 next_key(round_key, round);
364 xor_128(intermediateb, round_key, ciphertext);
373 xor_128(intermediatea, round_key, ciphertext);
374 next_key(round_key, round);

Completed in 36 milliseconds