当前位置: 首页>>代码示例>>Java>>正文


Java KeyInfoBean.setCertificate方法代码示例

本文整理汇总了Java中org.apache.ws.security.saml.ext.bean.KeyInfoBean.setCertificate方法的典型用法代码示例。如果您正苦于以下问题:Java KeyInfoBean.setCertificate方法的具体用法?Java KeyInfoBean.setCertificate怎么用?Java KeyInfoBean.setCertificate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.ws.security.saml.ext.bean.KeyInfoBean的用法示例。


在下文中一共展示了KeyInfoBean.setCertificate方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createKeyInfo

import org.apache.ws.security.saml.ext.bean.KeyInfoBean; //导入方法依赖的package包/类
protected KeyInfoBean createKeyInfo() throws Exception
{
   InputStream is = Thread.currentThread().getContextClassLoader().getResource("META-INF/alice.properties").openStream();
   Properties props = new Properties();
   try
   {
      props.load(is);
   }
   finally
   {
      is.close();
   }
   Crypto crypto = CryptoFactory.getInstance(props);
   CryptoType cryptoType = new CryptoType(CryptoType.TYPE.ALIAS);
   cryptoType.setAlias("alice");
   X509Certificate[] certs = crypto.getX509Certificates(cryptoType);

   KeyInfoBean keyInfo = new KeyInfoBean();
   keyInfo.setCertificate(certs[0]);
   keyInfo.setCertIdentifer(CERT_IDENTIFIER.X509_CERT);

   return keyInfo;
}
 
开发者ID:rareddy,项目名称:ws-security-examples,代码行数:24,代码来源:SamlCallbackHandler.java

示例2: createKeyInfo

import org.apache.ws.security.saml.ext.bean.KeyInfoBean; //导入方法依赖的package包/类
protected KeyInfoBean createKeyInfo() throws Exception
{
    InputStream is = Thread.currentThread().getContextClassLoader().getResource("META-INF/alice.properties").openStream();
    Properties props = new Properties();
    try
    {
        props.load(is);
    }
    finally
    {
        is.close();
    }
    Crypto crypto = CryptoFactory.getInstance(props);
    CryptoType cryptoType = new CryptoType(CryptoType.TYPE.ALIAS);
    cryptoType.setAlias("alice");
    X509Certificate[] certs = crypto.getX509Certificates(cryptoType);

    KeyInfoBean keyInfo = new KeyInfoBean();
    keyInfo.setCertificate(certs[0]);
    keyInfo.setCertIdentifer(CERT_IDENTIFIER.X509_CERT);

    return keyInfo;
}
 
开发者ID:windup,项目名称:windup-rulesets,代码行数:24,代码来源:SamlCallbackHandler.java

示例3: createKeyInfo

import org.apache.ws.security.saml.ext.bean.KeyInfoBean; //导入方法依赖的package包/类
protected KeyInfoBean createKeyInfo() throws Exception {
    KeyInfoBean keyInfo = new KeyInfoBean();
    if (statement == Statement.AUTHN) {
        keyInfo.setCertificate(certs[0]);
        keyInfo.setCertIdentifer(certIdentifier);
    } else if (statement == Statement.ATTR) {
        // Build a new Document
        DocumentBuilderFactory docBuilderFactory = 
            DocumentBuilderFactory.newInstance();
        docBuilderFactory.setNamespaceAware(true);
        DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
        Document doc = docBuilder.newDocument();
              
        // Create an Encrypted Key
        WSSecEncryptedKey encrKey = new WSSecEncryptedKey();
        encrKey.setKeyIdentifierType(WSConstants.X509_KEY_IDENTIFIER);
        encrKey.setUseThisCert(certs[0]);
        encrKey.prepare(doc, null);
        ephemeralKey = encrKey.getEphemeralKey();
        Element encryptedKeyElement = encrKey.getEncryptedKeyElement();
        
        // Append the EncryptedKey to a KeyInfo element
        Element keyInfoElement = 
            doc.createElementNS(
                WSConstants.SIG_NS, WSConstants.SIG_PREFIX + ":" + WSConstants.KEYINFO_LN
            );
        keyInfoElement.setAttributeNS(
            WSConstants.XMLNS_NS, "xmlns:" + WSConstants.SIG_PREFIX, WSConstants.SIG_NS
        );
        keyInfoElement.appendChild(encryptedKeyElement);
        
        keyInfo.setElement(keyInfoElement);
    }
    return keyInfo;
}
 
开发者ID:jaminh,项目名称:spring-saml-example-war,代码行数:36,代码来源:AbstractSAMLCallbackHandler.java


注:本文中的org.apache.ws.security.saml.ext.bean.KeyInfoBean.setCertificate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。