sm4.h 351 B

123456789101112131415
  1. #ifndef QEMU_SM4_H
  2. #define QEMU_SM4_H
  3. extern const uint8_t sm4_sbox[256];
  4. extern const uint32_t sm4_ck[32];
  5. static inline uint32_t sm4_subword(uint32_t word)
  6. {
  7. return sm4_sbox[word & 0xff] |
  8. sm4_sbox[(word >> 8) & 0xff] << 8 |
  9. sm4_sbox[(word >> 16) & 0xff] << 16 |
  10. sm4_sbox[(word >> 24) & 0xff] << 24;
  11. }
  12. #endif