CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2018/09/03 12:00:50
Modified files: lib/libssl : ssl_ciph.c Log message: Stop using composite EVP_CIPHER AEADs. The composite AEADs are "stitched" mode ciphers, that are only supported on some architectures/CPUs and are designed to be faster than a separate EVP_CIPHER and EVP_MD implementation. The three AEADs are used for less than ideal cipher suites (if you have hardware support that these use there are better cipher suite options), plus continuing to support AEADs via EVP_CIPHER is creating additional code complexity. ok inoguchi@ tb@