HomeSort by relevance Sort by last modified time
    Searched full:tweak1 (Results 1 - 1 of 1) sorted by null

  /external/boringssl/src/decrepit/xts/
xts.c 129 } tweak1; local
135 tweak1.u[0] = (tweak.u[0] << 1) ^ res;
136 tweak1.u[1] = (tweak.u[1] << 1) | carry;
139 scratch.u[0] ^= tweak1.u[0];
140 scratch.u[1] ^= tweak1.u[1];
142 scratch.u[0] = ((uint64_t *)inp)[0] ^ tweak1.u[0];
143 scratch.u[1] = ((uint64_t *)inp)[1] ^ tweak1.u[1];
146 scratch.u[0] ^= tweak1.u[0];
147 scratch.u[1] ^= tweak1.u[1];

Completed in 166 milliseconds