Home
last modified time | relevance | path

Searched refs:SM4_SBOX_T (Results 1 - 2 of 2) sorted by relevance

/third_party/node/deps/openssl/openssl/crypto/sm4/
H A Dsm4.c41 * SM4_SBOX_T[j] == L(SM4_SBOX[j]).
43 static const uint32_t SM4_SBOX_T[256] = { variable
126 return SM4_SBOX_T[(uint8_t)(X >> 24)] ^ in SM4_T()
127 rotl(SM4_SBOX_T[(uint8_t)(X >> 16)], 24) ^ in SM4_T()
128 rotl(SM4_SBOX_T[(uint8_t)(X >> 8)], 16) ^ in SM4_T()
129 rotl(SM4_SBOX_T[(uint8_t)X], 8); in SM4_T()
/third_party/openssl/crypto/sm4/
H A Dsm4.c41 * SM4_SBOX_T[j] == L(SM4_SBOX[j]).
43 static const uint32_t SM4_SBOX_T[256] = { variable
126 return SM4_SBOX_T[(uint8_t)(X >> 24)] ^ in SM4_T()
127 rotl(SM4_SBOX_T[(uint8_t)(X >> 16)], 24) ^ in SM4_T()
128 rotl(SM4_SBOX_T[(uint8_t)(X >> 8)], 16) ^ in SM4_T()
129 rotl(SM4_SBOX_T[(uint8_t)X], 8); in SM4_T()

Completed in 2 milliseconds