HomeSort by relevance Sort by last modified time
    Searched refs:SHFR (Results 1 - 5 of 5) sorted by null

  /external/vboot_reference/firmware/2lib/
2sha256.c 42 #define SHFR(x, n) (x >> n)
50 #define SHA256_F3(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHFR(x, 3))
51 #define SHA256_F4(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHFR(x, 10))
2sha512.c 42 #define SHFR(x, n) (x >> n)
50 #define SHA512_F3(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHFR(x, 7))
51 #define SHA512_F4(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHFR(x, 6))
  /external/vboot_reference/firmware/lib/cryptolib/
sha256.c 43 #define SHFR(x, n) (x >> n)
51 #define SHA256_F3(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHFR(x, 3))
52 #define SHA256_F4(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHFR(x, 10))
sha512.c 43 #define SHFR(x, n) (x >> n)
51 #define SHA512_F3(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHFR(x, 7))
52 #define SHA512_F4(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHFR(x, 6))
  /external/mmc-utils/3rdparty/hmac_sha/
sha2.c 46 #define SHFR(x, n) (x >> n)
54 #define SHA256_F3(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHFR(x, 3))
55 #define SHA256_F4(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHFR(x, 10))
59 #define SHA512_F3(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHFR(x, 7))
60 #define SHA512_F4(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHFR(x, 6))
    [all...]

Completed in 90 milliseconds