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


Java EncryptionConstants类代码示例

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


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

示例1: encryptData

import com.sun.org.apache.xml.internal.security.utils.EncryptionConstants; //导入依赖的package包/类
/**
 * Returns an <code>EncryptedData</code> interface. Use this operation if
 * you want to have full control over the contents of the
 * <code>EncryptedData</code> structure.
 *
 * This does not change the source document in any way.
 *
 * @param context the context <code>Document</code>.
 * @param element the <code>Element</code> that will be encrypted.
 * @param contentMode <code>true</code> to encrypt element's content only,
 *    <code>false</code> otherwise
 * @return the <code>EncryptedData</code>
 * @throws Exception
 */
public EncryptedData encryptData(
    Document context, Element element, boolean contentMode
) throws /* XMLEncryption */ Exception {
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Encrypting element...");
    }
    if (null == context) {
        log.log(java.util.logging.Level.SEVERE, "Context document unexpectedly null...");
    }
    if (null == element) {
        log.log(java.util.logging.Level.SEVERE, "Element unexpectedly null...");
    }
    if (cipherMode != ENCRYPT_MODE && log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "XMLCipher unexpectedly not in ENCRYPT_MODE...");
    }

    if (contentMode) {
        return encryptData(context, element, EncryptionConstants.TYPE_CONTENT, null);
    } else {
        return encryptData(context, element, EncryptionConstants.TYPE_ELEMENT, null);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:37,代码来源:XMLCipher.java

示例2: newEncryptionProperties

import com.sun.org.apache.xml.internal.security.utils.EncryptionConstants; //导入依赖的package包/类
/**
 * @param element
 * @return a new EncryptionProperties
 */
EncryptionProperties newEncryptionProperties(Element element) {
    EncryptionProperties result = newEncryptionProperties();

    result.setId(element.getAttributeNS(null, EncryptionConstants._ATT_ID));

    NodeList encryptionPropertyList =
        element.getElementsByTagNameNS(
            EncryptionConstants.EncryptionSpecNS,
            EncryptionConstants._TAG_ENCRYPTIONPROPERTY);
    for (int i = 0; i < encryptionPropertyList.getLength(); i++) {
        Node n = encryptionPropertyList.item(i);
        if (null != n) {
            result.addEncryptionProperty(newEncryptionProperty((Element) n));
        }
    }

    return result;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:XMLCipher.java

示例3: toElement

import com.sun.org.apache.xml.internal.security.utils.EncryptionConstants; //导入依赖的package包/类
Element toElement() {
    Element result =
        XMLUtils.createElementInEncryptionSpace(
            contextDocument, EncryptionConstants._TAG_ENCRYPTIONPROPERTY
        );
    if (null != target) {
        result.setAttributeNS(null, EncryptionConstants._ATT_TARGET, target);
    }
    if (null != id) {
        result.setAttributeNS(null, EncryptionConstants._ATT_ID, id);
    }
    // TODO: figure out the anyAttribyte stuff...
    // TODO: figure out the any stuff...

    return result;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:17,代码来源:XMLCipher.java

示例4: itemEncryptedKey

import com.sun.org.apache.xml.internal.security.utils.EncryptionConstants; //导入依赖的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


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