Lines Matching refs:FSb

94 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()
551 ( (uint32_t) FSb[ ( RK[5] >> 16 ) & 0xFF ] << 8 ) ^ in mbedtls_aes_setkey_enc()
552 ( (uint32_t) FSb[ ( RK[5] >> 24 ) & 0xFF ] << 16 ) ^ in mbedtls_aes_setkey_enc()
553 ( (uint32_t) FSb[ ( RK[5] ) & 0xFF ] << 24 ); in mbedtls_aes_setkey_enc()
568 ( (uint32_t) FSb[ ( RK[7] >> 8 ) & 0xFF ] ) ^ in mbedtls_aes_setkey_enc()
569 ( (uint32_t) FSb[ ( RK[7] >> 16 ) & 0xFF ] << 8 ) ^ in mbedtls_aes_setkey_enc()
570 ( (uint32_t) FSb[ ( RK[7] >> 24 ) & 0xFF ] << 16 ) ^ in mbedtls_aes_setkey_enc()
571 ( (uint32_t) FSb[ ( RK[7] ) & 0xFF ] << 24 ); in mbedtls_aes_setkey_enc()
578 ( (uint32_t) FSb[ ( RK[11] ) & 0xFF ] ) ^ in mbedtls_aes_setkey_enc()
579 ( (uint32_t) FSb[ ( RK[11] >> 8 ) & 0xFF ] << 8 ) ^ in mbedtls_aes_setkey_enc()
580 ( (uint32_t) FSb[ ( RK[11] >> 16 ) & 0xFF ] << 16 ) ^ in mbedtls_aes_setkey_enc()
581 ( (uint32_t) FSb[ ( RK[11] >> 24 ) & 0xFF ] << 24 ); in mbedtls_aes_setkey_enc()
644 *RK++ = RT0[ FSb[ ( *SK ) & 0xFF ] ] ^ in mbedtls_aes_setkey_dec()
645 RT1[ FSb[ ( *SK >> 8 ) & 0xFF ] ] ^ in mbedtls_aes_setkey_dec()
646 RT2[ FSb[ ( *SK >> 16 ) & 0xFF ] ] ^ in mbedtls_aes_setkey_dec()
647 RT3[ FSb[ ( *SK >> 24 ) & 0xFF ] ]; in mbedtls_aes_setkey_dec()
736 ( (uint32_t) FSb[ ( Y0 ) & 0xFF ] ) ^ in mbedtls_aes_encrypt()
737 ( (uint32_t) FSb[ ( Y1 >> 8 ) & 0xFF ] << 8 ) ^ in mbedtls_aes_encrypt()
738 ( (uint32_t) FSb[ ( Y2 >> 16 ) & 0xFF ] << 16 ) ^ in mbedtls_aes_encrypt()
739 ( (uint32_t) FSb[ ( Y3 >> 24 ) & 0xFF ] << 24 ); in mbedtls_aes_encrypt()
742 ( (uint32_t) FSb[ ( Y1 ) & 0xFF ] ) ^ in mbedtls_aes_encrypt()
743 ( (uint32_t) FSb[ ( Y2 >> 8 ) & 0xFF ] << 8 ) ^ in mbedtls_aes_encrypt()
744 ( (uint32_t) FSb[ ( Y3 >> 16 ) & 0xFF ] << 16 ) ^ in mbedtls_aes_encrypt()
745 ( (uint32_t) FSb[ ( Y0 >> 24 ) & 0xFF ] << 24 ); in mbedtls_aes_encrypt()
748 ( (uint32_t) FSb[ ( Y2 ) & 0xFF ] ) ^ in mbedtls_aes_encrypt()
749 ( (uint32_t) FSb[ ( Y3 >> 8 ) & 0xFF ] << 8 ) ^ in mbedtls_aes_encrypt()
750 ( (uint32_t) FSb[ ( Y0 >> 16 ) & 0xFF ] << 16 ) ^ in mbedtls_aes_encrypt()
751 ( (uint32_t) FSb[ ( Y1 >> 24 ) & 0xFF ] << 24 ); in mbedtls_aes_encrypt()
754 ( (uint32_t) FSb[ ( Y3 ) & 0xFF ] ) ^ in mbedtls_aes_encrypt()
755 ( (uint32_t) FSb[ ( Y0 >> 8 ) & 0xFF ] << 8 ) ^ in mbedtls_aes_encrypt()
756 ( (uint32_t) FSb[ ( Y1 >> 16 ) & 0xFF ] << 16 ) ^ in mbedtls_aes_encrypt()
757 ( (uint32_t) FSb[ ( Y2 >> 24 ) & 0xFF ] << 24 ); in mbedtls_aes_encrypt()