Home
last modified time | relevance | path

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

/mbedtls-3.6.0/library/
Dsha3.c68 #define ROT64(x, y) (((x) << (y)) | ((x) >> (64U - (y)))) macro
91 t = lane[4] ^ ROT64(lane[1], 1); in keccak_f1600()
94 t = lane[0] ^ ROT64(lane[2], 1); in keccak_f1600()
97 t = lane[1] ^ ROT64(lane[3], 1); in keccak_f1600()
100 t = lane[2] ^ ROT64(lane[4], 1); in keccak_f1600()
103 t = lane[3] ^ ROT64(lane[0], 1); in keccak_f1600()
108 s[i] = ROT64(s[i], rho[i-1]); in keccak_f1600()