Searched refs:I1 (Results 1 – 1 of 1) sorted by relevance
252 uint32_t I0, I1; in camellia_feistel() local254 I1 = x[1] ^ k[1]; in camellia_feistel()260 I1 = ((uint32_t) SBOX2(MBEDTLS_BYTE_3(I1)) << 24) | in camellia_feistel()261 ((uint32_t) SBOX3(MBEDTLS_BYTE_2(I1)) << 16) | in camellia_feistel()262 ((uint32_t) SBOX4(MBEDTLS_BYTE_1(I1)) << 8) | in camellia_feistel()263 ((uint32_t) SBOX1(MBEDTLS_BYTE_0(I1))); in camellia_feistel()265 I0 ^= (I1 << 8) | (I1 >> 24); in camellia_feistel()266 I1 ^= (I0 << 16) | (I0 >> 16); in camellia_feistel()267 I0 ^= (I1 >> 8) | (I1 << 24); in camellia_feistel()268 I1 ^= (I0 >> 8) | (I0 << 24); in camellia_feistel()[all …]