blob: 382b26d9224b1e299e0461ec2a97247c87190161 [file] [log] [blame]
Weiwei Lic29da5a2022-04-23 10:35:01 +08001#ifndef QEMU_SM4_H
2#define QEMU_SM4_H
3
4extern const uint8_t sm4_sbox[256];
Max Chouf5f3a912023-07-12 00:59:13 +08005extern const uint32_t sm4_ck[32];
Weiwei Lic29da5a2022-04-23 10:35:01 +08006
Max Chouf6ef5502023-07-12 00:59:12 +08007static inline uint32_t sm4_subword(uint32_t word)
8{
9 return sm4_sbox[word & 0xff] |
10 sm4_sbox[(word >> 8) & 0xff] << 8 |
11 sm4_sbox[(word >> 16) & 0xff] << 16 |
12 sm4_sbox[(word >> 24) & 0xff] << 24;
13}
14
Weiwei Lic29da5a2022-04-23 10:35:01 +080015#endif