Searched refs:ROTR32 (Results 1 – 1 of 1) sorted by relevance
/PHP-8.2/ext/hash/ |
H A D | hash_sha.c | 112 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) macro 121 #define SHA256_F2(x) (ROTR32( 2,(x)) ^ ROTR32(13,(x)) ^ ROTR32(22,(x))) 123 #define SHA256_F3(x) (ROTR32( 6,(x)) ^ ROTR32(11,(x)) ^ ROTR32(25,(x))) 125 #define SHA256_F4(x) (ROTR32( 7,(x)) ^ ROTR32(18,(x)) ^ SHR( 3,(x))) 127 #define SHA256_F5(x) (ROTR32(17,(x)) ^ ROTR32(19,(x)) ^ SHR(10,(x)))
|
Completed in 7 milliseconds