__vcipherlast
Purpose
Performs the final round of the AES cipher operation on intermediate state state_array using a given round_key.
Prototype
vector unsigned char __vcipherlast (vector unsigned char state_array, vector unsigned char round_key);
Parameters
- state_array
- The result of a previous vcipher operation.
- round_key
- The 128-bit AES round key value that is used to encrypt.
Result
Returns the resulting final state.


