Searched refs:SHFR (Results 1 – 2 of 2) sorted by relevance
/third_party/uboot/u-boot-2020.01/lib/libavb/ |
D | avb_sha256.c | 13 #define SHFR(x, n) (x >> n) macro 21 #define SHA256_F3(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHFR(x, 3)) 22 #define SHA256_F4(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHFR(x, 10))
|
D | avb_sha512.c | 13 #define SHFR(x, n) (x >> n) macro 21 #define SHA512_F3(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHFR(x, 7)) 22 #define SHA512_F4(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHFR(x, 6))
|