CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2022/09/10 11:39:47
Modified files: lib/libcrypto/evp: e_bf.c e_camellia.c e_cast.c e_gost2814789.c e_idea.c e_rc2.c e_sm4.c Log message: Use correct length for EVP CFB mode ciphers. The BLOCK_CIPHER_* macros contained a bug where the total length is passed to the underlying cipher implementation, rather than the length of the current chunk. Correct this and use the chunk length instead. Should address the remaining issues reported by Coverity. ok tb@