Searched refs:rotr64 (Results 1 – 3 of 3) sorted by relevance
/openssl/providers/implementations/digests/ |
H A D | blake2b_prov.c | 209 d = rotr64(d ^ a, 32); \ in blake2b_compress() 211 b = rotr64(b ^ c, 24); \ in blake2b_compress() 213 d = rotr64(d ^ a, 16); \ in blake2b_compress() 215 b = rotr64(b ^ c, 63); \ in blake2b_compress()
|
H A D | blake2_impl.h | 115 static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c) in rotr64() function
|
/openssl/providers/implementations/kdfs/ |
H A D | argon2.c | 87 d = rotr64(d ^ a, 32); \ 89 b = rotr64(b ^ c, 24); \ 91 d = rotr64(d ^ a, 16); \ 93 b = rotr64(b ^ c, 63); \ 228 static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c); 302 static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c) in rotr64() function
|
Completed in 8 milliseconds