HomeSort by: relevance | last modified time | path
    Searched refs:ROTR (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha256/cp/
hash_sha256_cp.c 77 #define ROTR(x, n) ROTR32(x, n)
78 #define S0(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22))
79 #define S1(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25))
80 #define s0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3))
81 #define s1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10)
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha512/cp/
hash_sha512_cp.c 93 #define ROTR(x, n) ROTR64(x, n)
94 #define S0(x) (ROTR(x, 28) ^ ROTR(x, 34) ^ ROTR(x, 39))
95 #define S1(x) (ROTR(x, 14) ^ ROTR(x, 18) ^ ROTR(x, 41))
96 #define s0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7))
97 #define s1(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHR(x, 6)
    [all...]

Completed in 11 milliseconds