函数逻辑报告 |
Source Code:lib\crypto\aes.c |
Create Date:2022-07-27 07:41:23 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
首页 | 函数Tree |
注解内核,赢得工具 | 下载SCCT | English |
函数名称:inv_subshift
函数原型:static __always_inline u32 inv_subshift(u32 in[], int pos)
返回类型:u32
参数:
类型 | 参数 | 名称 |
---|---|---|
u32 | in | |
int | pos |
157 | 返回:aes_inv_sbox[in[pos] & 0xff]按位异或aes_inv_sbox[(in[(pos + 3) % 4] >> 8) & 0xff]左移8位按位异或aes_inv_sbox[(in[(pos + 2) % 4] >> 16) & 0xff]左移16位按位异或aes_inv_sbox[(in[(pos + 1) % 4] >> 24) & 0xff]左移24位 |
名称 | 描述 |
---|---|
aes_decrypt | aes_decrypt - Decrypt a single AES block*@ctx: Context struct containing the key schedule*@out: Buffer to store the plaintext*@in: Buffer containing the ciphertext |
源代码转换工具 开放的插件接口 | X |
---|---|
支持:c/c++/esqlc/java Oracle/Informix/Mysql 插件可实现:逻辑报告 代码生成和批量转换代码 |