Searched refs:word (Results 1 – 3 of 3) sorted by relevance
1665 HN_UBASE word; in _nx_crypto_huge_number_setup() local1704 word = byte_stream[0]; in _nx_crypto_huge_number_setup()1709 word = byte_stream[0]; in _nx_crypto_huge_number_setup()1714 word = (HN_UBASE)((byte_stream[0] << 8) | byte_stream[1]); in _nx_crypto_huge_number_setup()1719 word = (HN_UBASE)((byte_stream[0] << 16) | (byte_stream[1] << 8) | byte_stream[2]); in _nx_crypto_huge_number_setup()1723 *destination = word; in _nx_crypto_huge_number_setup()1730 word = (HN_UBASE)((byte_stream[i] << 8) | (byte_stream[i + 1])); in _nx_crypto_huge_number_setup()1732 word = (HN_UBASE)((byte_stream[i] << 24) | in _nx_crypto_huge_number_setup()1737 *destination = word; in _nx_crypto_huge_number_setup()1920 HN_UBASE *word; in _nx_crypto_huge_number_extract() local[all …]
1178 NX_CRYPTO_KEEP static UINT _nx_crypto_aes_subword(UINT word) in _nx_crypto_aes_subword() argument1182 result = sub_bytes_sbox[word & 0xFF]; in _nx_crypto_aes_subword()1183 result |= (UINT)((sub_bytes_sbox[(word & 0x0000FF00) >> 8]) << 8); in _nx_crypto_aes_subword()1184 result |= (UINT)((sub_bytes_sbox[(word & 0x00FF0000) >> 16]) << 16); in _nx_crypto_aes_subword()1185 result |= (UINT)((sub_bytes_sbox[(word & 0xFF000000) >> 24]) << 24); in _nx_crypto_aes_subword()
5538 … Fixed case insensitive compare for challenge word.