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


Java InvalidCanonicalizerException类代码示例

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


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

示例1: transform

import com.sun.org.apache.xml.internal.security.c14n.InvalidCanonicalizerException; //导入依赖的package包/类
public Data transform(Data data, XMLCryptoContext xc)
    throws TransformException
{
    // ignore comments if dereferencing same-document URI that require
    // you to omit comments, even if the Transform says otherwise -
    // this is to be compliant with section 4.3.3.3 of W3C Rec.
    if (data instanceof DOMSubTreeData) {
        DOMSubTreeData subTree = (DOMSubTreeData)data;
        if (subTree.excludeComments()) {
            try {
                apacheCanonicalizer = Canonicalizer.getInstance
                    (CanonicalizationMethod.EXCLUSIVE);
            } catch (InvalidCanonicalizerException ice) {
                throw new TransformException
                    ("Couldn't find Canonicalizer for: " +
                     CanonicalizationMethod.EXCLUSIVE + ": " +
                     ice.getMessage(), ice);
            }
        }
    }

    return canonicalize(data, xc);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:24,代码来源:DOMExcC14NMethod.java

示例2: transform

import com.sun.org.apache.xml.internal.security.c14n.InvalidCanonicalizerException; //导入依赖的package包/类
public Data transform(Data data, XMLCryptoContext xc)
    throws TransformException {

    // ignore comments if dereferencing same-document URI that requires
    // you to omit comments, even if the Transform says otherwise -
    // this is to be compliant with section 4.3.3.3 of W3C Rec.
    if (data instanceof DOMSubTreeData) {
        DOMSubTreeData subTree = (DOMSubTreeData) data;
        if (subTree.excludeComments()) {
            try {
                apacheCanonicalizer = Canonicalizer.getInstance
                    (CanonicalizationMethod.INCLUSIVE);
            } catch (InvalidCanonicalizerException ice) {
                throw new TransformException
                    ("Couldn't find Canonicalizer for: " +
                     CanonicalizationMethod.INCLUSIVE + ": " +
                     ice.getMessage(), ice);
            }
        }
    }

    return canonicalize(data, xc);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:24,代码来源:DOMCanonicalXMLC14NMethod.java

示例3: transform

import com.sun.org.apache.xml.internal.security.c14n.InvalidCanonicalizerException; //导入依赖的package包/类
public Data transform(Data data, XMLCryptoContext xc)
    throws TransformException {

    // ignore comments if dereferencing same-document URI that requires
    // you to omit comments, even if the Transform says otherwise -
    // this is to be compliant with section 4.3.3.3 of W3C Rec.
    if (data instanceof DOMSubTreeData) {
        DOMSubTreeData subTree = (DOMSubTreeData) data;
        if (subTree.excludeComments()) {
            try {
                apacheCanonicalizer = Canonicalizer.getInstance(C14N_11);
            } catch (InvalidCanonicalizerException ice) {
                throw new TransformException
                    ("Couldn't find Canonicalizer for: " +
                     C14N_11 + ": " + ice.getMessage(), ice);
            }
        }
    }

    return canonicalize(data, xc);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:DOMCanonicalXMLC14N11Method.java

示例4: signInOctetStream

import com.sun.org.apache.xml.internal.security.c14n.InvalidCanonicalizerException; //导入依赖的package包/类
/**
 * Output the C14n stream to the given OutputStream.
 * @param os
 * @throws CanonicalizationException
 * @throws InvalidCanonicalizerException
 * @throws XMLSecurityException
 */
public void signInOctetStream(OutputStream os)
    throws CanonicalizationException, InvalidCanonicalizerException, XMLSecurityException {
    if (this.c14nizedBytes == null) {
        Canonicalizer c14nizer =
            Canonicalizer.getInstance(this.getCanonicalizationMethodURI());
        c14nizer.setWriter(os);
        String inclusiveNamespaces = this.getInclusiveNamespaces();

        if (inclusiveNamespaces == null) {
            c14nizer.canonicalizeSubtree(this.constructionElement);
        } else {
            c14nizer.canonicalizeSubtree(this.constructionElement, inclusiveNamespaces);
        }
    } else {
        try {
            os.write(this.c14nizedBytes);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:29,代码来源:SignedInfo.java

示例5: transform

import com.sun.org.apache.xml.internal.security.c14n.InvalidCanonicalizerException; //导入依赖的package包/类
public Data transform(Data data, XMLCryptoContext xc)
    throws TransformException {

    // ignore comments if dereferencing same-document URI that require
    // you to omit comments, even if the Transform says otherwise -
    // this is to be compliant with section 4.3.3.3 of W3C Rec.
    if (data instanceof DOMSubTreeData) {
        DOMSubTreeData subTree = (DOMSubTreeData) data;
        if (subTree.excludeComments()) {
            try {
                apacheCanonicalizer = Canonicalizer.getInstance
                    (CanonicalizationMethod.EXCLUSIVE);
            } catch (InvalidCanonicalizerException ice) {
                throw new TransformException
                    ("Couldn't find Canonicalizer for: " +
                     CanonicalizationMethod.EXCLUSIVE + ": " +
                     ice.getMessage(), ice);
            }
        }
    }

    return canonicalize(data, xc);
}
 
开发者ID:openjdk,项目名称:jdk7-jdk,代码行数:24,代码来源:DOMExcC14NMethod.java

示例6: getCanonicalizedOctetStream

import com.sun.org.apache.xml.internal.security.c14n.InvalidCanonicalizerException; //导入依赖的package包/类
/**
 * Returns getCanonicalizedOctetStream
 *
 * @return the canonicalization result octedt stream of <code>SignedInfo</code> element
 * @throws CanonicalizationException
 * @throws InvalidCanonicalizerException
 * @throws XMLSecurityException
 */
public byte[] getCanonicalizedOctetStream()
        throws CanonicalizationException, InvalidCanonicalizerException,
              XMLSecurityException {

   if ((this._c14nizedBytes == null)
           /*&& (this._state == ElementProxy.MODE_SIGN)*/) {
      Canonicalizer c14nizer =
         Canonicalizer.getInstance(this.getCanonicalizationMethodURI());

      this._c14nizedBytes =
         c14nizer.canonicalizeSubtree(this._constructionElement);
   }

   // make defensive copy
   byte[] output = new byte[this._c14nizedBytes.length];

   System.arraycopy(this._c14nizedBytes, 0, output, 0, output.length);

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

示例7: signInOctectStream

import com.sun.org.apache.xml.internal.security.c14n.InvalidCanonicalizerException; //导入依赖的package包/类
/**
 *  Output the C14n stream to the give outputstream.
 * @param os
 * @throws CanonicalizationException
 * @throws InvalidCanonicalizerException
 * @throws XMLSecurityException
 */
public void signInOctectStream(OutputStream os)
    throws CanonicalizationException, InvalidCanonicalizerException,
        XMLSecurityException {

     if ((this._c14nizedBytes == null)) {
    Canonicalizer c14nizer =
       Canonicalizer.getInstance(this.getCanonicalizationMethodURI());
    c14nizer.setWriter(os);
    String inclusiveNamespaces = this.getInclusiveNamespaces();

    if(inclusiveNamespaces == null)
     c14nizer.canonicalizeSubtree(this._constructionElement);
    else
     c14nizer.canonicalizeSubtree(this._constructionElement, inclusiveNamespaces);
 } else {
     try {
                     os.write(this._c14nizedBytes);
             } catch (IOException e) {
                     throw new RuntimeException(""+e);
             }
 }
}
 
开发者ID:openjdk,项目名称:jdk7-jdk,代码行数:30,代码来源:SignedInfo.java


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