Searched refs:round_key (Results 1 – 3 of 3) sorted by relevance
/openbmc/qemu/target/riscv/ |
H A D | vcrypto_helper.c | 212 static inline void xor_round_key(AESState *round_state, AESState *round_key) in xor_round_key() argument 214 round_state->v = round_state->v ^ round_key->v; in xor_round_key() 228 AESState round_key; \ 229 round_key.d[0] = *((uint64_t *)vs2 + H8(i * 2 + 0)); \ 230 round_key.d[1] = *((uint64_t *)vs2 + H8(i * 2 + 1)); \ 254 AESState round_key; \ 255 round_key.d[0] = *((uint64_t *)vs2 + H8(0)); \ 256 round_key.d[1] = *((uint64_t *)vs2 + H8(1)); \ 271 &round_key, in GEN_ZVKNED_HELPER_VV() argument 275 &round_key, [all …]
|
/openbmc/qemu/tests/tcg/multiarch/ |
H A D | test-aes-main.c.inc | 37 State start, after_sr, after_mc, round_key; 145 if (test_SB_SR_MC_AK(t.b, rounds[i].start.b, rounds[i].round_key.b)) { 165 rounds[i - 1].round_key.b)) { 176 if (test_IMC(t.b, rounds[i - 1].round_key.b) &&
|
/openbmc/linux/drivers/staging/rtl8712/ |
H A D | rtl871x_security.c | 864 u8 round_key[16]; in aes128k128d() local 867 round_key[i] = key[i]; in aes128k128d() 870 xor_128(round_key, data, ciphertext); in aes128k128d() 871 next_key(round_key, round); in aes128k128d() 875 xor_128(intermediateb, round_key, ciphertext); in aes128k128d() 883 xor_128(intermediatea, round_key, ciphertext); in aes128k128d() 884 next_key(round_key, round); in aes128k128d()
|