aboutsummaryrefslogtreecommitdiff
path: root/include/crypto/sm4.h
blob: de8245d8a717b9ce3644fb8cfd344ab2463a2f19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef QEMU_SM4_H
#define QEMU_SM4_H

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