Searched refs:ROTR (Results 1 – 2 of 2) sorted by relevance
/mbedtls-development/library/ |
A D | sha512.c | 206 #define ROTR(x,n) (SHR((x),(n)) | ((x) << (64 - (n)))) in mbedtls_internal_sha512_process() macro 208 #define S0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7)) in mbedtls_internal_sha512_process() 209 #define S1(x) (ROTR(x,19) ^ ROTR(x,61) ^ SHR(x, 6)) in mbedtls_internal_sha512_process() 211 #define S2(x) (ROTR(x,28) ^ ROTR(x,34) ^ ROTR(x,39)) in mbedtls_internal_sha512_process() 212 #define S3(x) (ROTR(x,14) ^ ROTR(x,18) ^ ROTR(x,41)) in mbedtls_internal_sha512_process()
|
A D | sha256.c | 147 #define ROTR(x,n) (SHR(x,n) | ((x) << (32 - (n)))) macro 149 #define S0(x) (ROTR(x, 7) ^ ROTR(x,18) ^ SHR(x, 3)) 150 #define S1(x) (ROTR(x,17) ^ ROTR(x,19) ^ SHR(x,10)) 152 #define S2(x) (ROTR(x, 2) ^ ROTR(x,13) ^ ROTR(x,22)) 153 #define S3(x) (ROTR(x, 6) ^ ROTR(x,11) ^ ROTR(x,25))
|
Completed in 4 milliseconds