blob: 3d662bfa3f3669357cd102a3be212006fa816351 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.wss4j.dom.message;
import java.util.ArrayList;
import java.util.List;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.xml.crypto.dsig.SignatureMethod;
import org.apache.wss4j.common.SignatureActionToken;
import org.apache.wss4j.common.bsp.BSPRule;
import org.apache.wss4j.common.crypto.AlgorithmSuite;
import org.apache.wss4j.common.crypto.Crypto;
import org.apache.wss4j.common.crypto.CryptoFactory;
import org.apache.wss4j.common.ext.WSSecurityException;
import org.apache.wss4j.common.util.KeyUtils;
import org.apache.wss4j.common.util.SOAPUtil;
import org.apache.wss4j.common.util.XMLUtils;
import org.apache.wss4j.dom.WSConstants;
import org.apache.wss4j.dom.common.SecretKeyCallbackHandler;
import org.apache.wss4j.dom.engine.WSSConfig;
import org.apache.wss4j.dom.engine.WSSecurityEngine;
import org.apache.wss4j.dom.handler.RequestData;
import org.apache.wss4j.dom.handler.WSHandlerResult;
import org.apache.wss4j.dom.util.WSSecurityUtil;
import org.junit.jupiter.api.Test;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
/**
* A set of test-cases for signing and verifying SOAP requests when specifying an
* AlgorithmSuite policy.
*/
public class SignatureAlgorithmSuiteTest {
private static final org.slf4j.Logger LOG =
org.slf4j.LoggerFactory.getLogger(SignatureAlgorithmSuiteTest.class);
private Crypto crypto;
public SignatureAlgorithmSuiteTest() throws Exception {
WSSConfig.init();
crypto = CryptoFactory.getInstance();
}
@Test
public void testSignature() throws Exception {
Document doc = SOAPUtil.toSOAPPart(SOAPUtil.SAMPLE_SOAP_MSG);
WSSecHeader secHeader = new WSSecHeader(doc);
secHeader.insertSecurityHeader();
WSSecSignature builder = new WSSecSignature(secHeader);
builder.setUserInfo("16c73ab6-b892-458f-abf5-2f875f74882e", "security");
builder.setKeyIdentifierType(WSConstants.ISSUER_SERIAL);
builder.setSignatureAlgorithm(WSConstants.RSA_SHA1);
Document signedDoc = builder.build(crypto);
if (LOG.isDebugEnabled()) {
String outputString =
XMLUtils.prettyDocumentToString(signedDoc);
LOG.debug(outputString);
}
Element securityHeader = WSSecurityUtil.getSecurityHeader(signedDoc, null);
AlgorithmSuite algorithmSuite = createAlgorithmSuite();
verify(securityHeader, algorithmSuite, crypto);
algorithmSuite.setMinimumAsymmetricKeyLength(1024);
try {
verify(securityHeader, algorithmSuite, crypto);
fail("Expected failure as 512-bit keys are not allowed");
} catch (WSSecurityException ex) {
assertTrue(ex.getErrorCode() == WSSecurityException.ErrorCode.INVALID_SECURITY);
}
}
@Test
public void testSignatureMethodDSA() throws Exception {
Crypto dsaCrypto = CryptoFactory.getInstance("wss40.properties");
Document doc = SOAPUtil.toSOAPPart(SOAPUtil.SAMPLE_SOAP_MSG);
WSSecHeader secHeader = new WSSecHeader(doc);
secHeader.insertSecurityHeader();
WSSecSignature builder = new WSSecSignature(secHeader);
builder.setUserInfo("wss40DSA", "security");
builder.setKeyIdentifierType(WSConstants.ISSUER_SERIAL);
builder.setSignatureAlgorithm(WSConstants.DSA);
Document signedDoc = builder.build(dsaCrypto);
if (LOG.isDebugEnabled()) {
String outputString =
XMLUtils.prettyDocumentToString(signedDoc);
LOG.debug(outputString);
}
Element securityHeader = WSSecurityUtil.getSecurityHeader(signedDoc, null);
AlgorithmSuite algorithmSuite = createAlgorithmSuite();
try {
verify(securityHeader, algorithmSuite, dsaCrypto);
fail("Expected failure as DSA is not allowed");
} catch (WSSecurityException ex) {
assertTrue(ex.getErrorCode() == WSSecurityException.ErrorCode.INVALID_SECURITY);
}
algorithmSuite.addSignatureMethod(WSConstants.DSA);
verify(securityHeader, algorithmSuite, dsaCrypto);
}
@Test
public void testSymmetricKey() throws Exception {
KeyGenerator keyGen = KeyGenerator.getInstance("AES");
keyGen.init(128);
SecretKey key = keyGen.generateKey();
byte[] keyData = key.getEncoded();
Document doc = SOAPUtil.toSOAPPart(SOAPUtil.SAMPLE_SOAP_MSG);
WSSecHeader secHeader = new WSSecHeader(doc);
secHeader.insertSecurityHeader();
WSSecSignature builder = new WSSecSignature(secHeader);
builder.setKeyIdentifierType(WSConstants.ENCRYPTED_KEY_SHA1_IDENTIFIER);
builder.setSecretKey(keyData);
builder.setSignatureAlgorithm(SignatureMethod.HMAC_SHA1);
Document signedDoc = builder.build(crypto);
if (LOG.isDebugEnabled()) {
String outputString =
XMLUtils.prettyDocumentToString(signedDoc);
LOG.debug(outputString);
}
byte[] encodedBytes = KeyUtils.generateDigest(keyData);
String identifier = org.apache.xml.security.utils.XMLUtils.encodeToString(encodedBytes);
SecretKeyCallbackHandler secretKeyCallbackHandler = new SecretKeyCallbackHandler();
secretKeyCallbackHandler.addSecretKey(identifier, keyData);
Element securityHeader = WSSecurityUtil.getSecurityHeader(signedDoc, null);
AlgorithmSuite algorithmSuite = createAlgorithmSuite();
WSSecurityEngine secEngine = new WSSecurityEngine();
RequestData data = new RequestData();
SignatureActionToken actionToken = new SignatureActionToken();
actionToken.setCrypto(crypto);
data.setSignatureToken(actionToken);
data.setCallbackHandler(secretKeyCallbackHandler);
data.setAlgorithmSuite(algorithmSuite);
try {
secEngine.processSecurityHeader(securityHeader, data);
fail("Expected failure as HMAC-SHA1 is not allowed");
} catch (WSSecurityException ex) {
assertTrue(ex.getErrorCode() == WSSecurityException.ErrorCode.INVALID_SECURITY);
}
algorithmSuite.addSignatureMethod(WSConstants.HMAC_SHA1);
secEngine.processSecurityHeader(securityHeader, data);
algorithmSuite.setMinimumSymmetricKeyLength(256);
try {
secEngine.processSecurityHeader(securityHeader, data);
fail("Expected failure as a 128 bit key is not allowed");
} catch (WSSecurityException ex) {
assertTrue(ex.getErrorCode() == WSSecurityException.ErrorCode.INVALID_SECURITY);
}
algorithmSuite.setMinimumSymmetricKeyLength(64);
algorithmSuite.setMaximumSymmetricKeyLength(120);
try {
secEngine.processSecurityHeader(securityHeader, data);
fail("Expected failure as a 128 bit key is not allowed");
} catch (WSSecurityException ex) {
assertTrue(ex.getErrorCode() == WSSecurityException.ErrorCode.INVALID_SECURITY);
}
}
@Test
public void testC14nMethod() throws Exception {
Document doc = SOAPUtil.toSOAPPart(SOAPUtil.SAMPLE_SOAP_MSG);
WSSecHeader secHeader = new WSSecHeader(doc);
secHeader.insertSecurityHeader();
WSSecSignature builder = new WSSecSignature(secHeader);
builder.setUserInfo("16c73ab6-b892-458f-abf5-2f875f74882e", "security");
builder.setKeyIdentifierType(WSConstants.ISSUER_SERIAL);
builder.setSignatureAlgorithm(WSConstants.RSA_SHA1);
builder.setSigCanonicalization(WSConstants.C14N_EXCL_WITH_COMMENTS);
Document signedDoc = builder.build(crypto);
if (LOG.isDebugEnabled()) {
String outputString =
XMLUtils.prettyDocumentToString(signedDoc);
LOG.debug(outputString);
}
Element securityHeader = WSSecurityUtil.getSecurityHeader(signedDoc, null);
AlgorithmSuite algorithmSuite = createAlgorithmSuite();
try {
verify(securityHeader, algorithmSuite, crypto);
fail("Expected failure as C14n algorithm is not allowed");
} catch (WSSecurityException ex) {
assertTrue(ex.getErrorCode() == WSSecurityException.ErrorCode.INVALID_SECURITY);
}
algorithmSuite.addC14nAlgorithm(WSConstants.C14N_EXCL_WITH_COMMENTS);
verify(securityHeader, algorithmSuite, crypto);
}
@Test
public void testDigestMethod() throws Exception {
Document doc = SOAPUtil.toSOAPPart(SOAPUtil.SAMPLE_SOAP_MSG);
WSSecHeader secHeader = new WSSecHeader(doc);
secHeader.insertSecurityHeader();
WSSecSignature builder = new WSSecSignature(secHeader);
builder.setUserInfo("16c73ab6-b892-458f-abf5-2f875f74882e", "security");
builder.setKeyIdentifierType(WSConstants.ISSUER_SERIAL);
builder.setSignatureAlgorithm(WSConstants.RSA_SHA1);
builder.setDigestAlgo(WSConstants.SHA256);
Document signedDoc = builder.build(crypto);
if (LOG.isDebugEnabled()) {
String outputString =
XMLUtils.prettyDocumentToString(signedDoc);
LOG.debug(outputString);
}
Element securityHeader = WSSecurityUtil.getSecurityHeader(signedDoc, null);
AlgorithmSuite algorithmSuite = createAlgorithmSuite();
try {
verify(securityHeader, algorithmSuite, crypto);
fail("Expected failure as Digest algorithm is not allowed");
} catch (WSSecurityException ex) {
assertTrue(ex.getErrorCode() == WSSecurityException.ErrorCode.INVALID_SECURITY);
}
algorithmSuite.addDigestAlgorithm(WSConstants.SHA256);
verify(securityHeader, algorithmSuite, crypto);
}
private AlgorithmSuite createAlgorithmSuite() {
AlgorithmSuite algorithmSuite = new AlgorithmSuite();
algorithmSuite.addSignatureMethod(WSConstants.RSA_SHA1);
algorithmSuite.setMinimumAsymmetricKeyLength(512);
algorithmSuite.addC14nAlgorithm(WSConstants.C14N_EXCL_OMIT_COMMENTS);
algorithmSuite.addDigestAlgorithm(WSConstants.SHA1);
return algorithmSuite;
}
private WSHandlerResult verify(
Element securityHeader, AlgorithmSuite algorithmSuite, Crypto sigVerCrypto
) throws Exception {
WSSecurityEngine secEngine = new WSSecurityEngine();
RequestData data = new RequestData();
data.setSigVerCrypto(sigVerCrypto);
data.setAlgorithmSuite(algorithmSuite);
List<BSPRule> ignoredRules = new ArrayList<>();
ignoredRules.add(BSPRule.R5404);
ignoredRules.add(BSPRule.R5406);
data.setIgnoredBSPRules(ignoredRules);
return secEngine.processSecurityHeader(securityHeader, data);
}
}