escaped to prevent terminal escape sequences from entering the
log file. [Joe Orton]
+ *) mod_ssl: Quiet FIPS mode weak keys disabled and FIPS not selected emits
+ in the error log to debug level. [William Rowe]
+
*) htdigest: Fix buffer overflow when reading digest password file
with very long lines. PR 54893. [Rainer Jung]
[ start all new proposals below, under PATCHES PROPOSED. ]
- * mod_ssl: Quiet FIPS mode weak keys disabled and FIPS not selected emits
- in the error log to debug level. [William Rowe]
- trunk patch: http://svn.apache.org/viewvc?view=revision&revision=1447993
- 2.4.x patch: trunk patch applies.
- 2.2.x patch: http://people.apache.org/~wrowe/httpd-2.2-quiet-fips.patch
- +1: wrowe, druggeri, kbrand
-
* mod_authnz_ldap: Allow using exec: callouts like SSLPassphraseDialog
for AuthLDAPBindPassword.
trunk patch: http://svn.apache.org/viewvc?view=revision&revision=1433478
if (FIPS_mode() && bits < 1024) {
mc->pTmpKeys[idx] = NULL;
- ap_log_error(APLOG_MARK, APLOG_ERR, 0, s,
+ ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s,
"Init: Skipping generating temporary "
"%d bit RSA private key in FIPS mode", bits);
return OK;
if (FIPS_mode() && bits < 1024) {
mc->pTmpKeys[idx] = NULL;
- ap_log_error(APLOG_MARK, APLOG_ERR, 0, s,
+ ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s,
"Init: Skipping generating temporary "
"%d bit DH parameters in FIPS mode", bits);
return OK;
}
}
else {
- ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s,
+ ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s,
"SSL FIPS mode disabled");
}
#endif