File clamav-fips.patch of Package clamav.14692
--- libclamav/crypto.c +++ libclamav/crypto.c @@ -129,6 +129,9 @@ int cl_initialize_crypto(void) OpenSSL_add_all_ciphers(); ERR_load_crypto_strings(); + /* avoid fips issues */ + EVP_add_digest(EVP_md5()); + return 0; }