Home
last modified time | relevance | path

Searched refs:FSb (Results 1 – 2 of 2) sorted by relevance

/net-tools-2.7.6/mbedtls-2.4.0/library/
Daes.c94 static const unsigned char FSb[256] = variable
360 static unsigned char FSb[256]; variable
417 FSb[0x00] = 0x63; in aes_gen_tables()
430 FSb[i] = (unsigned char) x; in aes_gen_tables()
439 x = FSb[i]; in aes_gen_tables()
534 ( (uint32_t) FSb[ ( RK[3] >> 8 ) & 0xFF ] ) ^ in mbedtls_aes_setkey_enc()
535 ( (uint32_t) FSb[ ( RK[3] >> 16 ) & 0xFF ] << 8 ) ^ in mbedtls_aes_setkey_enc()
536 ( (uint32_t) FSb[ ( RK[3] >> 24 ) & 0xFF ] << 16 ) ^ in mbedtls_aes_setkey_enc()
537 ( (uint32_t) FSb[ ( RK[3] ) & 0xFF ] << 24 ); in mbedtls_aes_setkey_enc()
550 ( (uint32_t) FSb[ ( RK[5] >> 8 ) & 0xFF ] ) ^ in mbedtls_aes_setkey_enc()
[all …]
Dcamellia.c91 static const unsigned char FSb[256] = variable
111 #define SBOX1(n) FSb[(n)]
112 #define SBOX2(n) (unsigned char)((FSb[(n)] >> 7 ^ FSb[(n)] << 1) & 0xff)
113 #define SBOX3(n) (unsigned char)((FSb[(n)] >> 1 ^ FSb[(n)] << 7) & 0xff)
114 #define SBOX4(n) FSb[((n) << 1 ^ (n) >> 7) &0xff]
118 static const unsigned char FSb[256] = variable
198 #define SBOX1(n) FSb[(n)]