【问题标题】:javax.xml.crypto.URIReferenceException: Cannot resolve element with ID Objectjavax.xml.crypto.URIReferenceException:无法解析具有 ID 对象的元素
【发布时间】:2019-09-10 15:43:29
【问题描述】:

我想通过

对 XML 文件进行数字签名
  1. 使用 SHA-256 进行单向哈希

  2. 规范化方法算法="http://www.w3.org/2001/10/xmlexcc14n#"

  3. RSA 数字签名
  4. 2048 位私钥
  5. W3C 推荐 XML 签名语法
  6. 封装类型签名。

我按照here提到的签名api!

但我收到以下错误

com.sun.org.apache.xml.internal.security.utils.resolver.ResourceResolverException:无法解析带有 ID 对象的元素

我已经为“ID”和 setIdAttributeNS 尝试过 Element.setIdAttributeNode 但没有帮助

下面一行是引发错误的地方

DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
dbFactory.setNamespaceAware ( false );  
Document doc = dbFactory.newDocumentBuilder().parse(new FileInputStream(filePath));

String providerName = System.getProperty("jsr105Provider", "org.jcp.xml.dsig.internal.dom.XMLDSigRI");

XMLSignatureFactory fac = XMLSignatureFactory.getInstance("DOM", (Provider) Class.forName(providerName).newInstance());

// Next, create a Reference to a same-document URI that is an Object element and specify the SHA256 digest algorithm
DigestMethod digestMethod = fac.newDigestMethod(DigestMethod.SHA256, null);
Reference reference = fac.newReference("#CBC",digestMethod);
SignatureMethod signatureMethod = fac.newSignatureMethod("http://www.w3.org/2001/04/xmldsig-more#rsa-sha256", null);
CanonicalizationMethod canonicalizationMethod = fac.newCanonicalizationMethod(CanonicalizationMethod.INCLUSIVE_WITH_COMMENTS, (C14NMethodParameterSpec) null);

// Create the SignedInfo
SignedInfo si = fac.newSignedInfo(canonicalizationMethod, signatureMethod, Collections.singletonList(reference));

// Create a RSA KeyPair
KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA");
kpg.initialize(2048);
KeyPair kp = kpg.generateKeyPair();

// Create a KeyValue containing the RSA PublicKey that was generated
KeyInfoFactory kif = fac.getKeyInfoFactory();
KeyValue kv = kif.newKeyValue(kp.getPublic());

// Create a KeyInfo and add the KeyValue to it
KeyInfo ki = kif.newKeyInfo(Collections.singletonList(kv));
DOMSignContext dsc = new DOMSignContext(kp.getPrivate(), doc);
//dsc.setDefaultNamespacePrefix("dsig");

// Create the XMLSignature and sign it
XMLSignature signature = fac.newXMLSignature(si, ki,Collections.singletonList(obj), null, null);
signature.sign(dsc);

TransformerFactory tf = TransformerFactory.newInstance();
Transformer trans = tf.newTransformer();

错误发生在下面一行

signature.sign(dsc)

【问题讨论】:

    标签: java rsa digital-signature


    【解决方案1】:

    我添加了以下 2 行,它解决了这个问题。

    XMLStructure content = new DOMStructure(doc.getDocumentElement());
    XMLObject obj = fac.newXMLObject(Collections.singletonList(content), "CBC", null, null);
    

    【讨论】:

      猜你喜欢
      • 2014-04-07
      • 1970-01-01
      • 2013-02-27
      • 2018-04-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-07-14
      • 2022-07-28
      相关资源
      最近更新 更多