Searched refs:I1 (Results 1 – 1 of 1) sorted by relevance
300 uint32_t I0, I1; in camellia_feistel() local302 I1 = x[1] ^ k[1]; in camellia_feistel()308 I1 = ((uint32_t) SBOX2((I1 >> 24) & 0xFF) << 24) | in camellia_feistel()309 ((uint32_t) SBOX3((I1 >> 16) & 0xFF) << 16) | in camellia_feistel()310 ((uint32_t) SBOX4((I1 >> 8) & 0xFF) << 8) | in camellia_feistel()311 ((uint32_t) SBOX1((I1 ) & 0xFF) ); in camellia_feistel()313 I0 ^= (I1 << 8) | (I1 >> 24); in camellia_feistel()314 I1 ^= (I0 << 16) | (I0 >> 16); in camellia_feistel()315 I0 ^= (I1 >> 8) | (I1 << 24); in camellia_feistel()316 I1 ^= (I0 >> 8) | (I0 << 24); in camellia_feistel()[all …]
Completed in 3 milliseconds