CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2024/01/04 10:38:36
Modified files:
lib/libcrypto/evp: e_aes.c e_bf.c e_camellia.c e_cast.c e_des.c
e_des3.c e_gost2814789.c e_idea.c e_null.c
e_rc2.c e_rc4.c e_rc4_hmac_md5.c e_sm4.c
e_xcbc_d.c evp_local.h
Log message:
Remove unused app_data from EVP_CIPHER
The EVP_CIPHER structs are static const data that the library returns when
you call EVP_aes_128_cbc(), for example. It makes no sense whatsoever to
hang user data off such a struct, but it's been there since forever.
ok jsing