![JAR search and dependency download from the Maven repository](/logo.png)
org.opensaml.xmlsec.signature.support.URIContentReference Maven / Gradle / Ivy
/*
* Licensed to the University Corporation for Advanced Internet Development,
* Inc. (UCAID) under one or more contributor license agreements. See the
* NOTICE file distributed with this work for additional information regarding
* copyright ownership. The UCAID 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.opensaml.xmlsec.signature.support;
import java.util.LinkedList;
import java.util.List;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import net.shibboleth.utilities.java.support.logic.Constraint;
import net.shibboleth.utilities.java.support.primitive.StringSupport;
import org.apache.xml.security.signature.XMLSignature;
import org.apache.xml.security.signature.XMLSignatureException;
import org.apache.xml.security.transforms.TransformationException;
import org.apache.xml.security.transforms.Transforms;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A generic content reference that uses a URI to reference the content to be signed.
*
*
* The default digest algorithm used is {@link SignatureConstants#ALGO_ID_DIGEST_SHA256}.
*
*/
public class URIContentReference implements ConfigurableContentReference {
/** Logger. */
private final Logger log = LoggerFactory.getLogger(URIContentReference.class);
/** Element reference ID. */
private final String referenceID;
/** Algorithm used to digest the content . */
private String digestAlgorithm;
/** Transforms applied to the content. */
private final List transforms;
/**
* Constructor. The anchor designator (#) must not be included in the ID.
*
* @param refID the reference ID of the element to be signed
*/
public URIContentReference(@Nullable final String refID) {
referenceID = refID;
transforms = new LinkedList<>();
// Set defaults
digestAlgorithm = SignatureConstants.ALGO_ID_DIGEST_SHA256;
}
/**
* Gets the transforms applied to the content prior to digest generation.
*
* @return the transforms applied to the content prior to digest generation
*/
@Nonnull public List getTransforms() {
return transforms;
}
/** {@inheritDoc}. */
@Nullable public String getDigestAlgorithm() {
return digestAlgorithm;
}
/** {@inheritDoc}. */
public void setDigestAlgorithm(@Nonnull final String newAlgorithm) {
digestAlgorithm = Constraint.isNotNull(StringSupport.trimOrNull(newAlgorithm),
"Digest algorithm cannot be empty or null");
}
/** {@inheritDoc} */
public void createReference(@Nonnull final XMLSignature signature) {
try {
Transforms dsigTransforms = new Transforms(signature.getDocument());
for (String transform : getTransforms()) {
dsigTransforms.addTransform(transform);
}
signature.addDocument(referenceID, dsigTransforms, digestAlgorithm);
} catch (TransformationException e) {
log.error("Error while creating transforms", e);
} catch (XMLSignatureException e) {
log.error("Error while adding content reference", e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy