| 398 | } |
| 399 | |
| 400 | static uint8_t xtime(uint8_t x) |
| 401 | { |
| 402 | return ((x<<1) ^ (((x>>7) & 1) * 0x1b)); |
| 403 | } |
| 404 | |
| 405 | // MixColumns function mixes the columns of the state matrix |
| 406 | static void MixColumns(state_t* state) |
no outgoing calls
no test coverage detected