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 2019/04/25 10:33:57 UTC

svn commit: r1858114 - /webservices/wss4j/branches/2_1_x-fixes/ws-security-common/src/test/java/org/apache/wss4j/common/crypto/SKITest.java

Author: coheigea
Date: Thu Apr 25 10:33:57 2019
New Revision: 1858114

URL: http://svn.apache.org/viewvc?rev=1858114&view=rev
Log:
Fixing tests

Modified:
    webservices/wss4j/branches/2_1_x-fixes/ws-security-common/src/test/java/org/apache/wss4j/common/crypto/SKITest.java

Modified: webservices/wss4j/branches/2_1_x-fixes/ws-security-common/src/test/java/org/apache/wss4j/common/crypto/SKITest.java
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/2_1_x-fixes/ws-security-common/src/test/java/org/apache/wss4j/common/crypto/SKITest.java?rev=1858114&r1=1858113&r2=1858114&view=diff
==============================================================================
--- webservices/wss4j/branches/2_1_x-fixes/ws-security-common/src/test/java/org/apache/wss4j/common/crypto/SKITest.java (original)
+++ webservices/wss4j/branches/2_1_x-fixes/ws-security-common/src/test/java/org/apache/wss4j/common/crypto/SKITest.java Thu Apr 25 10:33:57 2019
@@ -53,7 +53,7 @@ public class SKITest extends org.junit.A
         assertTrue(certs != null && certs.length > 0);
 
         byte[] skiBytes = crypto.getSKIBytesFromCert(certs[0]);
-        String knownBase64Encoding = "VPWiTCLlm0OwNWTwrnRTUF3qcIk=";
+        String knownBase64Encoding = "H7dt0lv9M8uYOy4SedV0kPOs22A=";
         assertTrue(knownBase64Encoding.equals(Base64.encode(skiBytes)));
     }
 
@@ -74,7 +74,7 @@ public class SKITest extends org.junit.A
         assertTrue(certs != null && certs.length > 0);
 
         byte[] skiBytes = crypto.getSKIBytesFromCert(certs[0]);
-        String knownBase64Encoding = "tgkZUMZ461ZSA1nZkBu6E5GDxLM=";
+        String knownBase64Encoding = "5LsTsLDSb7XxlaCffjNBHM5n+1A=";
         assertTrue(knownBase64Encoding.equals(Base64.encode(skiBytes)));
     }