Function aes::hazmat::equiv_inv_cipher_round
source · pub fn equiv_inv_cipher_round(block: &mut Block, round_key: &Block)Expand description
⚠️ AES equivalent inverse cipher (decrypt) round function.
This API performs the following steps as described in FIPS 197 Appendix C:
is_box: state afterInvSubBytes()is_row: state afterInvShiftRows()im_col: state afterInvMixColumns()ik_sch: key schedule value forround[r]
This series of operations is equivalent to the Intel AES-NI AESDEC instruction.
§☢️️ WARNING: HAZARDOUS API ☢️
Use this function with great care! See the module-level documentation for more information.