Searched refs:rotr32 (Results 1 – 1 of 1) sorted by relevance
/busybox-1.35.0/libbb/ |
D | hash_md5_sha.c | 24 static ALWAYS_INLINE uint32_t rotr32(uint32_t x, unsigned n) in rotr32() function 632 #define S0(x) (rotr32(x, 2) ^ rotr32(x, 13) ^ rotr32(x, 22)) in sha256_process_block64() 633 #define S1(x) (rotr32(x, 6) ^ rotr32(x, 11) ^ rotr32(x, 25)) in sha256_process_block64() 634 #define R0(x) (rotr32(x, 7) ^ rotr32(x, 18) ^ (x >> 3)) in sha256_process_block64() 635 #define R1(x) (rotr32(x, 17) ^ rotr32(x, 19) ^ (x >> 10)) in sha256_process_block64()
|