Example usage for javax.xml.crypto KeySelectorResult interface-usage

List of usage examples for javax.xml.crypto KeySelectorResult interface-usage

Introduction

In this page you can find the example usage for javax.xml.crypto KeySelectorResult interface-usage.

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 SimpleKeySelectorResult implements KeySelectorResult {
    private PublicKey pk;

    SimpleKeySelectorResult(PublicKey pk) {
        this.pk = pk;
    }