Searched refs:I0 (Results 1 – 1 of 1) sorted by relevance
304 uint32_t I0, I1; in camellia_feistel() local305 I0 = x[0] ^ k[0]; in camellia_feistel()308 I0 = ((uint32_t) SBOX1((I0 >> 24) & 0xFF) << 24) | in camellia_feistel()309 ((uint32_t) SBOX2((I0 >> 16) & 0xFF) << 16) | in camellia_feistel()310 ((uint32_t) SBOX3((I0 >> 8) & 0xFF) << 8) | in camellia_feistel()311 ((uint32_t) SBOX4((I0 ) & 0xFF) ); in camellia_feistel()317 I0 ^= (I1 << 8) | (I1 >> 24); in camellia_feistel()318 I1 ^= (I0 << 16) | (I0 >> 16); in camellia_feistel()319 I0 ^= (I1 >> 8) | (I1 << 24); in camellia_feistel()320 I1 ^= (I0 >> 8) | (I0 << 24); in camellia_feistel()[all …]