Commit 8bcc47b818 for strongswan.org

commit 8bcc47b8183e3e877296f86e51e7c4c618b66109
Author: Tobias Brunner <tobias@strongswan.org>
Date:   Mon Jul 13 19:00:28 2026 +0200

    fips-prf: Increase log level when logging secret state

    Fixes: f27f6296e6ae ("merged EAP framework from branch into trunk includes a lot of other modifications")

diff --git a/src/libstrongswan/plugins/fips_prf/fips_prf.c b/src/libstrongswan/plugins/fips_prf/fips_prf.c
index 737ebe1e54..735a98f706 100644
--- a/src/libstrongswan/plugins/fips_prf/fips_prf.c
+++ b/src/libstrongswan/plugins/fips_prf/fips_prf.c
@@ -132,14 +132,14 @@ METHOD(prf_t, get_bytes, bool,
 	{
 		/* a. XVAL = (XKEY + XSEED j) mod 2^b */
 		add_mod(this->b, xkey, xseed, xval);
-		DBG3(DBG_LIB, "XVAL %b", xval, (u_int)this->b);
+		DBG4(DBG_LIB, "XVAL %b", xval, (u_int)this->b);
 		/* b. wi = G(t, XVAL ) */
 		this->g(this, chunk_create(xval, this->b), &w[i * this->b]);
-		DBG3(DBG_LIB, "w[%d] %b", i, &w[i * this->b], (u_int)this->b);
+		DBG4(DBG_LIB, "w[%d] %b", i, &w[i * this->b], (u_int)this->b);
 		/* c. XKEY = (1 + XKEY + wi) mod 2b */
 		add_mod(this->b, xkey, &w[i * this->b], sum);
 		add_mod(this->b, sum, one, xkey);
-		DBG3(DBG_LIB, "XKEY %b", xkey, (u_int)this->b);
+		DBG4(DBG_LIB, "XKEY %b", xkey, (u_int)this->b);
 	}

 	/* 3.3 done already, mod q not used */