You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by co...@apache.org on 2021/09/13 08:54:03 UTC

[ws-wss4j] branch master updated: Catch NFE in WSHandler

This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-wss4j.git


The following commit(s) were added to refs/heads/master by this push:
     new 553db44  Catch NFE in WSHandler
553db44 is described below

commit 553db44a2d94a1f3c7357eb8c835b48fdf41b684
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Mon Sep 13 09:53:47 2021 +0100

    Catch NFE in WSHandler
---
 .../src/main/java/org/apache/wss4j/dom/handler/WSHandler.java     | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/ws-security-dom/src/main/java/org/apache/wss4j/dom/handler/WSHandler.java b/ws-security-dom/src/main/java/org/apache/wss4j/dom/handler/WSHandler.java
index 39bbbca..cddc996 100644
--- a/ws-security-dom/src/main/java/org/apache/wss4j/dom/handler/WSHandler.java
+++ b/ws-security-dom/src/main/java/org/apache/wss4j/dom/handler/WSHandler.java
@@ -529,8 +529,12 @@ public abstract class WSHandler {
 
         String iterations = getString(WSHandlerConstants.DERIVED_KEY_ITERATIONS, mc);
         if (iterations != null) {
-            int iIterations = Integer.parseInt(iterations);
-            reqData.setDerivedKeyIterations(iIterations);
+            try {
+                int iIterations = Integer.parseInt(iterations);
+                reqData.setDerivedKeyIterations(iIterations);
+            } catch (NumberFormatException e) {
+                LOG.warn("Error in configuring a derived key iteration count: " + e.getMessage());
+            }
         }
     }