CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2025/05/16 09:09:26
Modified files: lib/libcrypto/modes: gcm128.c Log message: Replace GCM_MUL/GHASH defines with static inline functions. Rather than having defines for GCM_MUL/GHASH (along with the wonder that is GCM_FUNCREF_4BIT) then conditioning on their availability, provide and call gcm_mul()/gcm_ghash() unconditionally. This simplifies all of the call sites. ok tb@