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


Java EncryptedKey类代码示例

本文整理汇总了Java中com.sun.org.apache.xml.internal.security.encryption.EncryptedKey的典型用法代码示例。如果您正苦于以下问题:Java EncryptedKey类的具体用法?Java EncryptedKey怎么用?Java EncryptedKey使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


EncryptedKey类属于com.sun.org.apache.xml.internal.security.encryption包,在下文中一共展示了EncryptedKey类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: itemEncryptedKey

import com.sun.org.apache.xml.internal.security.encryption.EncryptedKey; //导入依赖的package包/类
/**
 * Method itemEncryptedKey
 *
 * @param i
 * @return the asked EncryptedKey element, null if the index is too big
 * @throws XMLSecurityException
 */
public EncryptedKey itemEncryptedKey(int i) throws XMLSecurityException {
    if (encryptedKeys != null) {
        return encryptedKeys.get(i);
    }
    Element e =
        XMLUtils.selectXencNode(
            this.constructionElement.getFirstChild(), EncryptionConstants._TAG_ENCRYPTEDKEY, i);

    if (e != null) {
        XMLCipher cipher = XMLCipher.getInstance();
        cipher.init(XMLCipher.UNWRAP_MODE, null);
        return cipher.loadEncryptedKey(e);
    }
    return null;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:KeyInfo.java

示例2: itemEncryptedKey

import com.sun.org.apache.xml.internal.security.encryption.EncryptedKey; //导入依赖的package包/类
/**
     * Method itemEncryptedKey
     *
     * @param i
     * @return the asked EncryptedKey element, null if the index is too big
     * @throws XMLSecurityException
     */

     public EncryptedKey itemEncryptedKey(int i) throws XMLSecurityException {
             if (encryptedKeys!=null) {
                     return (EncryptedKey) encryptedKeys.get(i);
             }
             Element e =
                     XMLUtils.selectXencNode(this._constructionElement.getFirstChild(),
                                                                               EncryptionConstants._TAG_ENCRYPTEDKEY,i);

             if (e != null) {
                     XMLCipher cipher = XMLCipher.getInstance();
                     cipher.init(XMLCipher.UNWRAP_MODE, null);
                     return cipher.loadEncryptedKey(e);
             }
             return null;
}
 
开发者ID:openjdk,项目名称:jdk7-jdk,代码行数:24,代码来源:KeyInfo.java

示例3: itemEncryptedKey

import com.sun.org.apache.xml.internal.security.encryption.EncryptedKey; //导入依赖的package包/类
/**
     * Method itemEncryptedKey
     *
     * @param i
     * @return the asked EncryptedKey element, null if the index is too big
     * @throws XMLSecurityException
     */

     public EncryptedKey itemEncryptedKey(int i) throws XMLSecurityException {
             if (encryptedKeys!=null) {
                     return encryptedKeys.get(i);
             }
             Element e =
                     XMLUtils.selectXencNode(this._constructionElement.getFirstChild(),
                                                                               EncryptionConstants._TAG_ENCRYPTEDKEY,i);

             if (e != null) {
                     XMLCipher cipher = XMLCipher.getInstance();
                     cipher.init(XMLCipher.UNWRAP_MODE, null);
                     return cipher.loadEncryptedKey(e);
             }
             return null;
}
 
开发者ID:greghaskins,项目名称:openjdk-jdk7u-jdk,代码行数:24,代码来源:KeyInfo.java

示例4: add

import com.sun.org.apache.xml.internal.security.encryption.EncryptedKey; //导入依赖的package包/类
/**
 * Method addEncryptedKey
 *
 * @param encryptedKey
 * @throws XMLEncryptionException
 */

public void add(EncryptedKey encryptedKey) throws XMLEncryptionException {
    if (encryptedKeys == null) {
        encryptedKeys = new ArrayList<EncryptedKey>();
    }
    encryptedKeys.add(encryptedKey);
    XMLCipher cipher = XMLCipher.getInstance();
    this.constructionElement.appendChild(cipher.martial(encryptedKey));
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:16,代码来源:KeyInfo.java

示例5: engineLookupAndResolveSecretKey

import com.sun.org.apache.xml.internal.security.encryption.EncryptedKey; //导入依赖的package包/类
/** @inheritDoc */
public javax.crypto.SecretKey engineLookupAndResolveSecretKey(
    Element element, String BaseURI, StorageResolver storage
) {
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "EncryptedKeyResolver - Can I resolve " + element.getTagName());
    }

    if (element == null) {
        return null;
    }

    SecretKey key = null;
    boolean isEncryptedKey =
        XMLUtils.elementIsInEncryptionSpace(element, EncryptionConstants._TAG_ENCRYPTEDKEY);
    if (isEncryptedKey) {
        if (log.isLoggable(java.util.logging.Level.FINE)) {
            log.log(java.util.logging.Level.FINE, "Passed an Encrypted Key");
        }
        try {
            XMLCipher cipher = XMLCipher.getInstance();
            cipher.init(XMLCipher.UNWRAP_MODE, kek);
            if (internalKeyResolvers != null) {
                int size = internalKeyResolvers.size();
                for (int i = 0; i < size; i++) {
                    cipher.registerInternalKeyResolver(internalKeyResolvers.get(i));
                }
            }
            EncryptedKey ek = cipher.loadEncryptedKey(element);
            key = (SecretKey) cipher.decryptKey(ek, algorithm);
        } catch (XMLEncryptionException e) {
            if (log.isLoggable(java.util.logging.Level.FINE)) {
                log.log(java.util.logging.Level.FINE, e.getMessage(), e);
            }
        }
    }

    return key;
}
 
开发者ID:campolake,项目名称:openjdk9,代码行数:40,代码来源:EncryptedKeyResolver.java

示例6: engineLookupAndResolveSecretKey

import com.sun.org.apache.xml.internal.security.encryption.EncryptedKey; //导入依赖的package包/类
/** @inheritDoc */
public javax.crypto.SecretKey engineLookupAndResolveSecretKey(
        Element element, String BaseURI, StorageResolver storage) {
        SecretKey key=null;
        if (log.isLoggable(java.util.logging.Level.FINE))
                     log.log(java.util.logging.Level.FINE, "EncryptedKeyResolver - Can I resolve " + element.getTagName());

           if (element == null) {
              return null;
           }

           boolean isEncryptedKey = XMLUtils.elementIsInEncryptionSpace(element,
                                   EncryptionConstants._TAG_ENCRYPTEDKEY);

           if (isEncryptedKey) {
                       log.log(java.util.logging.Level.FINE, "Passed an Encrypted Key");
                       try {
                               XMLCipher cipher = XMLCipher.getInstance();
                               cipher.init(XMLCipher.UNWRAP_MODE, _kek);
                               EncryptedKey ek = cipher.loadEncryptedKey(element);
                               key = (SecretKey) cipher.decryptKey(ek, _algorithm);
                       }
                       catch (Exception e) {}
           }

   return key;
}
 
开发者ID:openjdk,项目名称:jdk7-jdk,代码行数:28,代码来源:EncryptedKeyResolver.java

示例7: add

import com.sun.org.apache.xml.internal.security.encryption.EncryptedKey; //导入依赖的package包/类
/**
 * Method addEncryptedKey
 *
 * @param encryptedKey
 * @throws XMLEncryptionException
 */

public void add(EncryptedKey encryptedKey)
        throws XMLEncryptionException {
                if (encryptedKeys==null)
                        encryptedKeys=new ArrayList();
                encryptedKeys.add(encryptedKey);
                XMLCipher cipher = XMLCipher.getInstance();
                this._constructionElement.appendChild(cipher.martial(encryptedKey));
}
 
开发者ID:openjdk,项目名称:jdk7-jdk,代码行数:16,代码来源:KeyInfo.java

示例8: add

import com.sun.org.apache.xml.internal.security.encryption.EncryptedKey; //导入依赖的package包/类
/**
 * Method addEncryptedKey
 *
 * @param encryptedKey
 * @throws XMLEncryptionException
 */

public void add(EncryptedKey encryptedKey)
        throws XMLEncryptionException {
                if (encryptedKeys==null)
                        encryptedKeys=new ArrayList<EncryptedKey>();
                encryptedKeys.add(encryptedKey);
                XMLCipher cipher = XMLCipher.getInstance();
                this._constructionElement.appendChild(cipher.martial(encryptedKey));
}
 
开发者ID:greghaskins,项目名称:openjdk-jdk7u-jdk,代码行数:16,代码来源:KeyInfo.java


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