List of usage examples for javax.xml.crypto KeySelector subclass-usage
From source file be.e_contract.dssp.client.SecurityTokenKeySelector.java
/**
* A JSR105 Key Selector implementation based on the WS-SecureConversation
* security token.
*
* @author Frank Cornelis
*
From source file be.fedict.eid.tsl.KeyInfoKeySelector.java
public class KeyInfoKeySelector extends KeySelector implements KeySelectorResult { private static final Log LOG = LogFactory.getLog(KeyInfoKeySelector.class); private X509Certificate certificate;
From source file be.fedict.eid.applet.service.signer.KeyInfoKeySelector.java
/**
* JSR105 key selector implementation using the ds:KeyInfo data of the signature
* itself.
*
* @author Frank Cornelis
*
From source file com.alvexcore.repo.SimpleKeySelectorResult.java
class AlvexKeySelector extends KeySelector { public KeySelectorResult select(KeyInfo keyInfo, Purpose purpose, AlgorithmMethod method, XMLCryptoContext context) throws KeySelectorException { return new SimpleKeySelectorResult(new PublicKey() {
From source file org.openehealth.coms.cc.web_frontend.consentcreator.service.DocumentFactory.java
class X509KeySelector extends KeySelector { public KeySelectorResult select(KeyInfo keyInfo, KeySelector.Purpose purpose, AlgorithmMethod method, XMLCryptoContext context) throws KeySelectorException { Iterator ki = keyInfo.getContent().iterator(); while (ki.hasNext()) { XMLStructure info = (XMLStructure) ki.next();