mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
crypto: Create sm4_subword
Allows sharing of sm4_subword between different targets. Signed-off-by: Max Chou <max.chou@sifive.com> Reviewed-by: Frank Chang <frank.chang@sifive.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Max Chou <max.chou@sifive.com> Message-ID: <20230711165917.2629866-14-max.chou@sifive.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
767eb03548
commit
f6ef550fe5
2 changed files with 10 additions and 8 deletions
|
@ -3,4 +3,12 @@
|
|||
|
||||
extern const uint8_t sm4_sbox[256];
|
||||
|
||||
static inline uint32_t sm4_subword(uint32_t word)
|
||||
{
|
||||
return sm4_sbox[word & 0xff] |
|
||||
sm4_sbox[(word >> 8) & 0xff] << 8 |
|
||||
sm4_sbox[(word >> 16) & 0xff] << 16 |
|
||||
sm4_sbox[(word >> 24) & 0xff] << 24;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue