CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2025/05/25 00:24:37
Modified files: lib/libcrypto/aes: aes_ige.c Log message: Simplify AES-IGE and remove code with implementation defined behaviour. Remove the UNALIGNED_MEMOPS_ARE_FAST from AES-IGE, which can result in implementation defined behaviour on i386/amd64. While we could keep this purely for aligned inputs and outputs, it's probably not that important and can be redone in a simpler form later if we want to do so. ok tb@