Home
last modified time | relevance | path

Searched refs:I0 (Results 1 – 1 of 1) sorted by relevance

/net-tools-2.7.6/mbedtls-2.4.0/library/
Dcamellia.c304 uint32_t I0, I1; in camellia_feistel() local
305 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 …]