CVSROOT: /cvs Module name: src Changes by: m...@cvs.openbsd.org 2014/05/12 13:19:55
Modified files: lib/libssl/src/crypto/aes: aes.h aes_ige.c regress/lib/libcrypto/ige: igetest.c Log message: Remove AES_bi_ige_encrypt() from libcrypto. This routine is supposed to use two keys and four IVs to do much magic, is specified as such with test vectors, but the implementation actually always uses the first key, and the test vectors were computed with it, so they are wrong. Fixing the code to match the intended specification would break interoperability with existing code (assuming such code would exist), so it is better to remove this interface, which is obviously too complex for mere mortals if even its author can not implement it correctly. Riding on the libcrypto major bump.