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 2015/07/29 11:18:38 UTC

svn commit: r1693224 - /webservices/wss4j/trunk/ws-security-dom/src/main/java/org/apache/wss4j/dom/message/WSSecEncryptedKey.java

Author: coheigea
Date: Wed Jul 29 09:18:38 2015
New Revision: 1693224

URL: http://svn.apache.org/r1693224
Log:
[WSS-548] - logging secretKey

Modified:
    webservices/wss4j/trunk/ws-security-dom/src/main/java/org/apache/wss4j/dom/message/WSSecEncryptedKey.java

Modified: webservices/wss4j/trunk/ws-security-dom/src/main/java/org/apache/wss4j/dom/message/WSSecEncryptedKey.java
URL: http://svn.apache.org/viewvc/webservices/wss4j/trunk/ws-security-dom/src/main/java/org/apache/wss4j/dom/message/WSSecEncryptedKey.java?rev=1693224&r1=1693223&r2=1693224&view=diff
==============================================================================
--- webservices/wss4j/trunk/ws-security-dom/src/main/java/org/apache/wss4j/dom/message/WSSecEncryptedKey.java (original)
+++ webservices/wss4j/trunk/ws-security-dom/src/main/java/org/apache/wss4j/dom/message/WSSecEncryptedKey.java Wed Jul 29 09:18:38 2015
@@ -285,9 +285,7 @@ public class WSSecEncryptedKey extends W
         }
         int blockSize = cipher.getBlockSize();
         if (doDebug) {
-            LOG.debug(
-                "cipher blksize: " + blockSize + ", symm key: " + secretKey.toString()
-            );
+            LOG.debug("cipher blksize: " + blockSize);
         }
         
         try {