Home
last modified time | relevance | path

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

/external/srtp/crypto/cipher/
Daes.c1505 aes_round(v128_t *state, const v128_t *round_key) { in aes_round() argument
1523 state->v32[0] = column0 ^ round_key->v32[0]; in aes_round()
1524 state->v32[1] = column1 ^ round_key->v32[1]; in aes_round()
1525 state->v32[2] = column2 ^ round_key->v32[2]; in aes_round()
1526 state->v32[3] = column3 ^ round_key->v32[3]; in aes_round()
1532 aes_inv_round(v128_t *state, const v128_t *round_key) { in aes_inv_round() argument
1550 state->v32[0] = column0 ^ round_key->v32[0]; in aes_inv_round()
1551 state->v32[1] = column1 ^ round_key->v32[1]; in aes_inv_round()
1552 state->v32[2] = column2 ^ round_key->v32[2]; in aes_inv_round()
1553 state->v32[3] = column3 ^ round_key->v32[3]; in aes_inv_round()
[all …]