From 85c0cb6cc2e0e14d12627dbb596bc25c5a1fc23c Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 13 Jun 2022 22:05:19 +0200 Subject: Update argtable3 and fix warnings --- src/argon2-core.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/argon2-core.h') diff --git a/src/argon2-core.h b/src/argon2-core.h index f55d2dd..c8409df 100644 --- a/src/argon2-core.h +++ b/src/argon2-core.h @@ -26,6 +26,8 @@ #define CONST_CAST(x) (x)(uintptr_t) +#define rotr64(x, n) (((x) >> (n)) | ((x) << (64 - (n)))) + /**********************Argon2 internal constants*******************************/ enum argon2_core_constants { -- cgit v1.2.3