CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2025/04/25 02:19:22
Modified files: lib/libcrypto/modes: gcm128.c Log message: Use the OPENSSL_SMALL_FOOTPRINT code in gcm_init_4bit(). A modern compiler will unroll these loops - LLVM produces identical code (at least on arm64). Drop the manually unrolled version and have code that is more readable and maintainable. ok tb@