org.opensaml.xml.encryption.SimpleRetrievalMethodEncryptedKeyResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmltooling Show documentation
Show all versions of xmltooling Show documentation
XMLTooling-J is a low-level library that may be used to construct libraries that allow developers to work with XML in a Java beans manner.
The newest version!
/*
* 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.xml.encryption;
import java.util.ArrayList;
import java.util.List;
import org.opensaml.xml.XMLObject;
import org.opensaml.xml.signature.RetrievalMethod;
import org.opensaml.xml.util.DatatypeHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Implementation of {@link EncryptedKeyResolver} which finds {@link EncryptedKey} elements by dereferencing
* {@link RetrievalMethod} children of the {@link org.opensaml.xml.signature.KeyInfo} of the {@link EncryptedData}
* context.
*
* The RetrievalMethod must have a Type
attribute with the value of
* {@link EncryptionConstants#TYPE_ENCRYPTED_KEY}. The URI
attribute value must be a same-document
* fragment identifier (via ID attribute). Processing of transforms children of RetrievalMethod is not supported by this
* implementation.
*/
public class SimpleRetrievalMethodEncryptedKeyResolver extends AbstractEncryptedKeyResolver {
/** Class logger. */
private final Logger log = LoggerFactory.getLogger(SimpleRetrievalMethodEncryptedKeyResolver.class);
/** {@inheritDoc} */
public Iterable resolve(EncryptedData encryptedData) {
List resolvedEncKeys = new ArrayList();
if (encryptedData.getKeyInfo() == null) {
return resolvedEncKeys;
}
for (RetrievalMethod rm : encryptedData.getKeyInfo().getRetrievalMethods()) {
if (!DatatypeHelper.safeEquals(rm.getType(), EncryptionConstants.TYPE_ENCRYPTED_KEY)) {
continue;
}
if (rm.getTransforms() != null) {
log.warn("EncryptedKey RetrievalMethod has transforms, can not process");
continue;
}
EncryptedKey encKey = dereferenceURI(rm);
if (encKey == null) {
continue;
}
if (matchRecipient(encKey.getRecipient())) {
resolvedEncKeys.add(encKey);
}
}
return resolvedEncKeys;
}
/**
* Dereference the URI attribute of the specified retrieval method into an EncryptedKey.
*
* @param rm the RetrievalMethod to process
* @return the dereferenced EncryptedKey
*/
protected EncryptedKey dereferenceURI(RetrievalMethod rm) {
String uri = rm.getURI();
if (DatatypeHelper.isEmpty(uri) || !uri.startsWith("#")) {
log.warn("EncryptedKey RetrievalMethod did not contain a same-document URI reference, can not process");
return null;
}
XMLObject target = rm.resolveIDFromRoot(uri.substring(1));
if (target == null) {
log.warn("EncryptedKey RetrievalMethod URI could not be dereferenced");
return null;
}
if (!(target instanceof EncryptedKey)) {
log.warn("The product of dereferencing the EncryptedKey RetrievalMethod was not an EncryptedKey");
return null;
}
return (EncryptedKey) target;
}
}