Searched refs:I0 (Results 1 – 1 of 1) sorted by relevance
252 uint32_t I0, I1; in camellia_feistel() local253 I0 = x[0] ^ k[0]; in camellia_feistel()256 I0 = ((uint32_t) SBOX1(MBEDTLS_BYTE_3(I0)) << 24) | in camellia_feistel()257 ((uint32_t) SBOX2(MBEDTLS_BYTE_2(I0)) << 16) | in camellia_feistel()258 ((uint32_t) SBOX3(MBEDTLS_BYTE_1(I0)) << 8) | in camellia_feistel()259 ((uint32_t) SBOX4(MBEDTLS_BYTE_0(I0))); 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 …]