Home
last modified time | relevance | path

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

/mbedtls-latest/library/
Daes.c78 MBEDTLS_MAYBE_UNUSED static const unsigned char FSb[256] = variable
345 MBEDTLS_MAYBE_UNUSED static unsigned char FSb[256]; variable
402 FSb[0x00] = 0x63; in aes_gen_tables()
416 FSb[i] = x; in aes_gen_tables()
426 x = FSb[i]; in aes_gen_tables()
622 ((uint32_t) FSb[MBEDTLS_BYTE_1(RK[3])]) ^ in mbedtls_aes_setkey_enc()
623 ((uint32_t) FSb[MBEDTLS_BYTE_2(RK[3])] << 8) ^ in mbedtls_aes_setkey_enc()
624 ((uint32_t) FSb[MBEDTLS_BYTE_3(RK[3])] << 16) ^ in mbedtls_aes_setkey_enc()
625 ((uint32_t) FSb[MBEDTLS_BYTE_0(RK[3])] << 24); in mbedtls_aes_setkey_enc()
638 ((uint32_t) FSb[MBEDTLS_BYTE_1(RK[5])]) ^ in mbedtls_aes_setkey_enc()
[all …]
Dcamellia.c39 static const unsigned char FSb[256] = variable
59 #define SBOX1(n) FSb[(n)]
60 #define SBOX2(n) (unsigned char) ((FSb[(n)] >> 7 ^ FSb[(n)] << 1) & 0xff)
61 #define SBOX3(n) (unsigned char) ((FSb[(n)] >> 1 ^ FSb[(n)] << 7) & 0xff)
62 #define SBOX4(n) FSb[((n) << 1 ^ (n) >> 7) &0xff]
66 static const unsigned char FSb[256] = variable
146 #define SBOX1(n) FSb[(n)]